@@ -101,16 +101,16 @@ jobs:
101101 - name : Checkout repository
102102 uses : actions/checkout@v6
103103 - name : Set up Docker Buildx
104- uses : docker/setup-buildx-action@v3
104+ uses : docker/setup-buildx-action@v4
105105 - name : Log in to GHCR
106- uses : docker/login-action@v3
106+ uses : docker/login-action@v4
107107 with :
108108 registry : ghcr.io
109109 username : ${{ github.actor }}
110110 password : ${{ secrets.GITHUB_TOKEN }}
111111 - name : Build and push by digest
112112 id : build
113- uses : docker/build-push-action@v6
113+ uses : docker/build-push-action@v7
114114 with :
115115 platforms : ${{ matrix.platform }}
116116 outputs : type=image,name=ghcr.io/${{ github.repository }},push-by-digest=true,name-canonical=true,push=true
@@ -120,7 +120,7 @@ jobs:
120120 digest="${{ steps.build.outputs.digest }}"
121121 touch "/tmp/digests/${digest#sha256:}"
122122 - name : Upload digest
123- uses : actions/upload-artifact@v4
123+ uses : actions/upload-artifact@v7
124124 with :
125125 name : digest-${{ matrix.name }}
126126 path : /tmp/digests/*
@@ -141,24 +141,24 @@ jobs:
141141 packages : write
142142 steps :
143143 - name : Download digests
144- uses : actions/download-artifact@v4
144+ uses : actions/download-artifact@v8
145145 with :
146146 path : /tmp/digests
147147 pattern : digest-*
148148 merge-multiple : true
149149 - name : Docker metadata
150150 id : meta
151- uses : docker/metadata-action@v5
151+ uses : docker/metadata-action@v6
152152 with :
153153 images : ghcr.io/${{ github.repository }}
154154 tags : |
155155 type=edge,branch=main
156156 type=ref,event=pr
157157 type=raw,value=${{ needs.release-plz-release.outputs.version }},enable=${{ needs.release-plz-release.outputs.releases_created == 'true' }}
158158 - name : Set up Docker Buildx
159- uses : docker/setup-buildx-action@v3
159+ uses : docker/setup-buildx-action@v4
160160 - name : Log in to GHCR
161- uses : docker/login-action@v3
161+ uses : docker/login-action@v4
162162 with :
163163 registry : ghcr.io
164164 username : ${{ github.actor }}
0 commit comments