6666 needs : check
6767 steps :
6868 - name : Checkout Version
69- uses : actions/checkout@v5
69+ uses : actions/checkout@v6
7070 with :
7171 ref : ${{needs.check.outputs.version}}
7272 - name : Set up Go
8080 run : |
8181 make release-artifacts
8282 - name : Upload to Actions as artifact
83- uses : actions/upload-artifact@v4
83+ uses : actions/upload-artifact@v5
8484 with :
8585 name : release-artifacts
8686 path : release/*
@@ -103,7 +103,7 @@ jobs:
103103 KEYCHAIN_PWD : ${{ secrets.MACOS_CI_KEYCHAIN_PWD }}
104104 steps :
105105 - name : Checkout Version
106- uses : actions/checkout@v5
106+ uses : actions/checkout@v6
107107 with :
108108 ref : ${{needs.check.outputs.version}}
109109 - name : Set up Go
@@ -136,7 +136,7 @@ jobs:
136136 run : |
137137 make ARCH=universal notarize &> /dev/null
138138 - name : Artifact
139- uses : actions/upload-artifact@v4
139+ uses : actions/upload-artifact@v5
140140 with :
141141 name : mac-installers
142142 path : |
@@ -161,9 +161,9 @@ jobs:
161161 }
162162 Write-Output "version=$version" | Out-File -FilePath $env:GITHUB_OUTPUT -Append
163163 - name : Checkout Podman
164- uses : actions/checkout@v5
164+ uses : actions/checkout@v6
165165 - name : Download Windows zip artifact
166- uses : actions/download-artifact@v5
166+ uses : actions/download-artifact@v6
167167 - name : Set up Go
168168 uses : actions/setup-go@v6
169169 with :
@@ -230,21 +230,21 @@ jobs:
230230 Copy-Item -Path podman-${{steps.getversion.outputs.version}}-setup.exe -Destination podman-installer-windows-${{ matrix.arch }}.exe
231231 Pop-Location
232232 - name : Upload the MSI
233- uses : actions/upload-artifact@v4
233+ uses : actions/upload-artifact@v5
234234 with :
235235 name : win-msi-${{ matrix.arch }}
236236 path : |
237237 .\contrib\win-installer\podman-installer-windows-${{ matrix.arch }}.msi
238238 - name : Upload the bundle (legacy)
239- uses : actions/upload-artifact@v4
239+ uses : actions/upload-artifact@v5
240240 with :
241241 name : win-installer-${{ matrix.arch }}
242242 path : |
243243 .\contrib\win-installer-legacy\podman-installer-windows-${{ matrix.arch }}.exe
244244 # For backwards compatibility, we also upload the amd64 windows
245245 # installer using the old name
246246 - name : Upload the bundle with the old name (legacy)
247- uses : actions/upload-artifact@v4
247+ uses : actions/upload-artifact@v5
248248 if : ${{ matrix.arch == 'amd64' }}
249249 with :
250250 name : win-installer
@@ -262,7 +262,7 @@ jobs:
262262 VERSION : ${{needs.check.outputs.version}}
263263 steps :
264264 - name : Checkout Version
265- uses : actions/checkout@v5
265+ uses : actions/checkout@v6
266266 with :
267267 ref : ${{needs.check.outputs.version}}
268268 - name : Get release notes
@@ -281,7 +281,7 @@ jobs:
281281 - name : Display release notes
282282 run : cat $VERSION-release-notes.md
283283 - name : Download all artifacts
284- uses : actions/download-artifact@v5
284+ uses : actions/download-artifact@v6
285285 - name : Show artifacts
286286 run : |
287287 mv win-installer/* release-artifacts
0 commit comments