@@ -32,13 +32,18 @@ jobs:
3232
3333 steps :
3434 - name : Checkout repository
35- uses : actions/checkout@v2
36-
35+ uses : actions/checkout@v3
36+ -
37+ name : Set up QEMU
38+ uses : docker/setup-qemu-action@v2
39+ -
40+ name : Set up Docker Buildx
41+ uses : docker/setup-buildx-action@v2
3742 # Login against a Docker registry except on PR
3843 # https://github.com/docker/login-action
3944 - name : Log into registry ${{ env.REGISTRY }}
4045 if : github.event_name != 'pull_request'
41- uses : docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
46+ uses : docker/login-action@v2
4247 with :
4348 registry : ${{ env.REGISTRY }}
4449 username : ${{ github.actor }}
@@ -48,14 +53,14 @@ jobs:
4853 # https://github.com/docker/metadata-action
4954 - name : Extract Docker metadata
5055 id : meta
51- uses : docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
56+ uses : docker/metadata-action@v4
5257 with :
5358 images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
5459
5560 # Build and push Docker image with Buildx (don't push on PR)
5661 # https://github.com/docker/build-push-action
5762 - name : Build and push Docker image
58- uses : docker/build-push-action@v2
63+ uses : docker/build-push-action@v4
5964 with :
6065 context : ./test/jquery_example/
6166 push : ${{ github.event_name != 'pull_request' && github.event_name != 'schedule' }}
0 commit comments