Skip to content

Commit 07a27f9

Browse files
[skip-ci] Update GitHub Artifact Actions
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 5a0b74b commit 07a27f9

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/check_cirrus_cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
body: file://./artifacts/email_body.txt
7474

7575
- if: always()
76-
uses: actions/upload-artifact@v4
76+
uses: actions/upload-artifact@v5
7777
with:
7878
name: ${{ github.job }}_artifacts
7979
path: artifacts/*

.github/workflows/mac-pkg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
steps.check.outputs.buildarm == 'true' ||
152152
steps.check.outputs.builduniversal == 'true' ||
153153
steps.actual_dryrun.outputs.dryrun == 'true'
154-
uses: actions/upload-artifact@v4
154+
uses: actions/upload-artifact@v5
155155
with:
156156
name: installers
157157
path: |

.github/workflows/release-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
if: >-
174174
steps.check.outputs.buildartifacts == 'true' ||
175175
steps.actual_dryrun.outputs.dryrun == 'true'
176-
uses: actions/upload-artifact@v4
176+
uses: actions/upload-artifact@v5
177177
with:
178178
name: artifacts
179179
path: |

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
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/*
@@ -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: |
@@ -163,7 +163,7 @@ jobs:
163163
- name: Checkout Podman
164164
uses: actions/checkout@v5
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
@@ -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

.github/workflows/upload-win-installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
Exit $code
121121
- name: Artifact
122122
if: steps.check.outputs.already-exists != 'true' || steps.actual_dryrun.outputs.dryrun == 'true'
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v5
124124
with:
125125
name: installer
126126
path: |

0 commit comments

Comments
 (0)