@@ -37,13 +37,13 @@ jobs:
3737
3838 # Workaround: https://github.com/docker/build-push-action/issues/461
3939 - name : Setup Docker buildx
40- uses : docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf
40+ uses : docker/setup-buildx-action@v2
4141
4242 # Login against a Docker registry except on PR
4343 # https://github.com/docker/login-action
4444 - name : Log into registry ${{ env.REGISTRY }}
4545 if : github.event_name != 'pull_request'
46- uses : docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
46+ uses : docker/login-action@v2
4747 with :
4848 registry : ${{ env.REGISTRY }}
4949 username : ${{ github.actor }}
@@ -53,17 +53,17 @@ jobs:
5353 # https://github.com/docker/metadata-action
5454 - name : Extract Docker metadata
5555 id : meta
56- uses : docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
56+ uses : docker/metadata-action@v4
5757 with :
5858 images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
5959
6060 # Build and push Docker image with Buildx (don't push on PR)
6161 # https://github.com/docker/build-push-action
6262 - name : Build and push Docker image
6363 id : build-and-push
64- uses : docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
64+ uses : docker/build-push-action@v4
6565 with :
66- platforms : linux/amd64,linux/arm/v7,linux/ arm64
66+ platforms : linux/amd64,linux/arm64
6767 context : .
6868 push : ${{ github.event_name != 'pull_request' }}
6969 tags : ${{ steps.meta.outputs.tags }}
0 commit comments