File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -16,30 +16,30 @@ jobs:
1616 - linux/arm64
1717 - linux/arm/v7
1818 - linux/arm/v6
19- runs-on : ubuntu-20 .04
19+ runs-on : ubuntu-22 .04
2020 steps :
2121 -
2222 name : Checkout
23- uses : actions/checkout@v2
23+ uses : actions/checkout@v3
2424 with :
2525 fetch-depth : 1
2626 -
2727 name : Cache Docker layers
28- uses : actions/cache@v2
28+ uses : actions/cache@v3
2929 with :
3030 path : /tmp/.buildx-cache
3131 key : alpine-mysql-client-${{ matrix.arch }}-buildx-${{ github.sha }}
3232 restore-keys : |
3333 alpine-mysql-client-${{ matrix.arch }}-buildx-
3434 -
3535 name : Set up QEMU
36- uses : docker/setup-qemu-action@v1
36+ uses : docker/setup-qemu-action@v2
3737 -
3838 name : Set up Docker Buildx
39- uses : docker/setup-buildx-action@v1
39+ uses : docker/setup-buildx-action@v2
4040 -
4141 name : Build and Test
42- uses : docker/build-push-action@v2
42+ uses : docker/build-push-action@v4
4343 with :
4444 push : false
4545 context : .
Original file line number Diff line number Diff line change 77
88jobs :
99 docker :
10- runs-on : ubuntu-20 .04
10+ runs-on : ubuntu-22 .04
1111 steps :
1212 -
1313 name : Checkout
1414 uses : actions/checkout@v3
1515 -
1616 name : Set up QEMU
17- uses : docker/setup-qemu-action@v1
17+ uses : docker/setup-qemu-action@v2
1818 -
1919 name : Docker meta
2020 id : meta
@@ -27,10 +27,10 @@ jobs:
2727 type=semver,pattern={{major}}
2828 -
2929 name : Set up Docker Buildx
30- uses : docker/setup-buildx-action@v1
30+ uses : docker/setup-buildx-action@v2
3131 -
3232 name : Login to DockerHub
33- uses : docker/login-action@v1
33+ uses : docker/login-action@v2
3434 with :
3535 username : ${{ secrets.DOCKERHUB_USERNAME }}
3636 password : ${{ secrets.DOCKERHUB_TOKEN }}
4141 echo "VERSION=${GITHUB_REF##*/v}" >> $GITHUB_ENV
4242 -
4343 name : Build and push
44- uses : docker/build-push-action@v2
44+ uses : docker/build-push-action@v4
4545 with :
4646 push : true
4747 context : .
Original file line number Diff line number Diff line change 1- FROM --platform=$BUILDPLATFORM alpine:3.16.5 as build
1+ FROM --platform=$BUILDPLATFORM alpine:3.17.3 as build
22
33ARG TARGETPLATFORM
44ARG VERSION=0.0.0
@@ -22,7 +22,7 @@ RUN set -ex; \
2222 chmod +x /usr/local/bin/enve; \
2323 true
2424
25- FROM alpine:3.16.5
25+ FROM alpine:3.17.3
2626
2727ARG VERSION=0.0.0
2828ENV VERSION=${VERSION}
You can’t perform that action at this time.
0 commit comments