@@ -49,40 +49,40 @@ jobs:
4949 asset_name : redis-rdb-cli-release.zip
5050 asset_content_type : application/zip
5151 - name : Login to Docker Hub
52- uses : docker/login-action@v1
52+ uses : docker/login-action@v2
5353 with :
5454 username : ${{ secrets.DOCKER_USER }}
5555 password : ${{ secrets.DOCKER_PASSWORD }}
5656 - name : Set up Docker Buildx
5757 id : buildx
58- uses : docker/setup-buildx-action@v1
58+ uses : docker/setup-buildx-action@v2
5959 - name : Build and Push latest
6060 id : latest
61- uses : docker/build-push-action@v2
61+ uses : docker/build-push-action@v4
6262 with :
6363 context : ./
6464 file : ./Dockerfile
6565 push : true
6666 tags : ${{ secrets.DOCKER_USER }}/${{ secrets.REPO }}:latest
6767 - name : Build and Push ${{ env.RELEASE_TAG }}
6868 id : tag
69- uses : docker/build-push-action@v2
69+ uses : docker/build-push-action@v4
7070 with :
7171 context : ./
7272 file : ./Dockerfile
7373 push : true
7474 tags : ${{ secrets.DOCKER_USER }}/${{ secrets.REPO }}:${{ env.RELEASE_TAG }}
7575 - name : Build and Push latest-native
7676 id : latest-native
77- uses : docker/build-push-action@v2
77+ uses : docker/build-push-action@v4
7878 with :
7979 context : ./
8080 file : ./DockerfileNative
8181 push : true
8282 tags : ${{ secrets.DOCKER_USER }}/${{ secrets.REPO }}:latest-native
8383 - name : Build and Push ${{ env.RELEASE_TAG }}-native
8484 id : tag-native
85- uses : docker/build-push-action@v2
85+ uses : docker/build-push-action@v4
8686 with :
8787 context : ./
8888 file : ./DockerfileNative
0 commit comments