@@ -54,16 +54,16 @@ jobs:
5454 run : sudo apt-get install rename
5555
5656 - name : Setup Docker Buildx
57- uses : docker/setup-buildx-action@v3
57+ uses : docker/setup-buildx-action@v4
5858
5959 # NB: Needs to contain a Dockerfile at root of repository
6060 - name : Checkout ${{ github.event.repository.name }}
61- uses : actions/checkout@v4
61+ uses : actions/checkout@v6
6262 with :
6363 path : ${{ github.event.repository.name }}
6464
6565 - name : Download artifacts
66- uses : dawidd6/action-download-artifact@v9
66+ uses : dawidd6/action-download-artifact@v18
6767 with :
6868 github_token : ${{secrets.GITHUB_TOKEN}}
6969 workflow : Pre-Release-and-Prepare-Next-Dev.yml
@@ -76,21 +76,21 @@ jobs:
7676 rename 's/.jar//' *.jar
7777
7878 - name : Log in to Docker Hub
79- uses : docker/login-action@v3
79+ uses : docker/login-action@v4
8080 with :
8181 username : ${{ secrets.DOCKER_USER }}
8282 password : ${{ secrets.DOCKER_PASSWORD }}
8383
8484 - name : Build and push Docker image with given tag
85- uses : docker/build-push-action@v6
85+ uses : docker/build-push-action@v7
8686 with :
8787 context : ${{ github.workspace }}/${{ github.event.repository.name }}
8888 push : true
8989 tags : riseclipse/${{ inputs.DOCKER_REPOSITORY }}:${{ inputs.release_version }}
9090
9191 - name : Build and push Docker image with latest tag
9292 if : inputs.release_latest
93- uses : docker/build-push-action@v6
93+ uses : docker/build-push-action@v7
9494 with :
9595 context : ${{ github.workspace }}/${{ github.event.repository.name }}
9696 push : true
0 commit comments