@@ -45,32 +45,32 @@ jobs:
4545 platform : ${{ matrix.platform }}
4646
4747 - name : Checkout
48- uses : actions/checkout@v4
48+ uses : actions/checkout@v6
4949 with :
5050 fetch-depth : ' 0' # need full history to get version from git tag
5151
5252 - name : Container metadata
5353 id : metadata
54- uses : docker/metadata-action@v5
54+ uses : docker/metadata-action@v6
5555 with :
5656 images : ghcr.io/${{ steps.prep.outputs.repo_lowercase }}
5757
5858 - name : Set up QEMU
59- uses : docker/setup-qemu-action@v3
59+ uses : docker/setup-qemu-action@v4
6060
6161 - name : Set up Docker Buildx
62- uses : docker/setup-buildx-action@v3
62+ uses : docker/setup-buildx-action@v4
6363
6464 - name : Login to GitHub Container Registry
65- uses : docker/login-action@v3
65+ uses : docker/login-action@v4
6666 with :
6767 registry : ghcr.io
6868 username : ${{ github.actor }}
6969 password : ${{ secrets.GITHUB_TOKEN }}
7070
7171 - name : Build and push by digest
7272 id : build
73- uses : docker/build-push-action@v6
73+ uses : docker/build-push-action@v7
7474 with :
7575 platforms : ${{ matrix.platform }}
7676 cache-from : type=gha,scope=build-${{ steps.prep.outputs.platform_pair }}
8585 touch "/tmp/digests/${digest#sha256:}"
8686
8787 - name : Upload digest
88- uses : actions/upload-artifact@v4
88+ uses : actions/upload-artifact@v7
8989 with :
9090 name : digests-${{ steps.prep.outputs.platform_pair }}
9191 path : /tmp/digests/*
@@ -109,23 +109,23 @@ jobs:
109109 echo "repo_lowercase=$(echo '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT
110110
111111 - name : Download digests
112- uses : actions/download-artifact@v4
112+ uses : actions/download-artifact@v8
113113 with :
114114 path : /tmp/digests
115115 pattern : digests-*
116116 merge-multiple : true
117117
118118 - name : Set up Docker Buildx
119- uses : docker/setup-buildx-action@v3
119+ uses : docker/setup-buildx-action@v4
120120
121121 - name : Container metadata
122122 id : metadata
123- uses : docker/metadata-action@v5
123+ uses : docker/metadata-action@v6
124124 with :
125125 images : ghcr.io/${{ steps.prep.outputs.repo_lowercase }}
126126
127127 - name : Login to GitHub Container Registry
128- uses : docker/login-action@v3
128+ uses : docker/login-action@v4
129129 with :
130130 registry : ghcr.io
131131 username : ${{ github.actor }}
0 commit comments