6565
6666 steps :
6767 - name : Download Docker image artifact
68- uses : actions/download-artifact@v4
68+ uses : actions/download-artifact@v8
6969 with :
7070 name : docker-image-${{ matrix.component }}-${{ inputs.version }}
7171
7575 echo "LOCAL_TAG=local/${{ env.IMAGE_BASE_NAME }}-${{ matrix.component }}:${{ inputs.version }}" >> $GITHUB_ENV
7676
7777 - name : Login to DockerHub
78- uses : docker/login-action@v3
78+ uses : docker/login-action@v4
7979 with :
8080 username : ${{ secrets.DOCKERHUB_USER }}
8181 password : ${{ secrets.DOCKERHUB_TOKEN }}
@@ -102,7 +102,7 @@ jobs:
102102
103103 steps :
104104 - name : Download Docker image artifact
105- uses : actions/download-artifact@v4
105+ uses : actions/download-artifact@v8
106106 with :
107107 name : docker-image-${{ matrix.component }}-${{ inputs.version }}
108108
@@ -112,7 +112,7 @@ jobs:
112112 echo "LOCAL_TAG=local/${{ env.IMAGE_BASE_NAME }}-${{ matrix.component }}:${{ inputs.version }}" >> $GITHUB_ENV
113113
114114 - name : Login to GitHub Container Registry
115- uses : docker/login-action@v3
115+ uses : docker/login-action@v4
116116 with :
117117 registry : ghcr.io
118118 username : ${{ github.actor }}
@@ -134,12 +134,12 @@ jobs:
134134
135135 steps :
136136 - name : Download Python packages artifact
137- uses : actions/download-artifact@v4
137+ uses : actions/download-artifact@v8
138138 with :
139139 name : python-packages-${{ inputs.version }}
140140 path : dist/
141141
142- - uses : astral-sh/setup-uv@v5
142+ - uses : astral-sh/setup-uv@v7
143143
144144 - name : Publish to PyPI (final release)
145145 if : inputs.release_type == 'final'
@@ -162,7 +162,7 @@ jobs:
162162 timestamp : ${{ steps.timestamp.outputs.value }}
163163
164164 steps :
165- - uses : actions/checkout@v4
165+ - uses : actions/checkout@v6
166166 with :
167167 fetch-depth : 0
168168
@@ -187,15 +187,15 @@ jobs:
187187
188188 steps :
189189 - name : Download SBOM artifacts
190- uses : actions/download-artifact@v4
190+ uses : actions/download-artifact@v8
191191 with :
192192 pattern : sbom-*
193193 merge-multiple : true
194194 path : sboms
195195
196196 - name : Download Python packages artifact
197197 if : needs.publish-pypi.result == 'success'
198- uses : actions/download-artifact@v4
198+ uses : actions/download-artifact@v8
199199 with :
200200 name : python-packages-${{ inputs.version }}
201201 path : pypi-dist/
@@ -288,7 +288,7 @@ jobs:
288288
289289 - name : Create GitHub Release (Draft)
290290 id : create_release
291- uses : softprops/action-gh-release@v2
291+ uses : softprops/action-gh-release@v3
292292 with :
293293 tag_name : ${{ needs.create-release-tag.outputs.timestamp }}-${{ inputs.tag_prefix }}${{ inputs.version }}
294294 name : ${{ inputs.tag_prefix }}${{ inputs.version }}
0 commit comments