File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -26,16 +26,16 @@ jobs:
2626 uses : actions/checkout@v2
2727
2828 - name : Login to DockerHub
29- uses : docker/login-action@v1
29+ uses : docker/login-action@v2
3030 with :
3131 username : ${{ secrets.DOCKERHUB_USERNAME }}
3232 password : ${{ secrets.DOCKERHUB_TOKEN }}
3333
3434 - name : Set up QEMU
35- uses : docker/setup-qemu-action@v1
35+ uses : docker/setup-qemu-action@v2
3636
3737 - name : Set up Docker Buildx
38- uses : docker/setup-buildx-action@v1
38+ uses : docker/setup-buildx-action@v2
3939
4040 - name : Cache Docker layers
4141 uses : actions/cache@v2
4444 key : ${{ runner.os }}-buildx-${{ github.sha }}-${{ matrix.image }}
4545
4646 - name : Build and push
47- uses : docker/build-push-action@v2
47+ uses : docker/build-push-action@v3
4848 with :
4949 context : .
5050 push : true
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ENV DOCKER_BUILDKIT=1
77RUN apk update && \
88 apk upgrade && \
99 # Install extra deps
10- apk add --no-cache make git curl wget && \
10+ apk add --no-cache make git curl wget direnv && \
1111 # Basic check it works
1212 docker -v && \
1313 docker-compose -v
Original file line number Diff line number Diff line change @@ -22,4 +22,5 @@ Preinstalled:
2222- make
2323- git
2424- wget
25- - curl
25+ - curl
26+ - direnv
You can’t perform that action at this time.
0 commit comments