Skip to content

Commit 126d855

Browse files
Bump actions/upload-artifact from 5.0.0 to 6.0.0
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5.0.0 to 6.0.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5.0.0...v6.0.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent aeefc11 commit 126d855

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/image-builder-from-repo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
echo "image=$IMAGE" >> $GITHUB_OUTPUT
100100
101101
# artifact upload will take care of zipping for us
102-
- uses: actions/upload-artifact@v5.0.0
102+
- uses: actions/upload-artifact@v6.0.0
103103
with:
104104
name: ${{ steps.copy.outputs.image }}
105105
path: ${{ steps.copy.outputs.image }}.img.xz

.github/workflows/image-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
echo "image=$IMAGE" >> $GITHUB_OUTPUT
122122
123123
# artifact upload will take care of zipping for us
124-
- uses: actions/upload-artifact@v5.0.0
124+
- uses: actions/upload-artifact@v6.0.0
125125
with:
126126
name: ${{ steps.copy.outputs.image }}
127127
path: ${{ steps.copy.outputs.image }}.img

.github/workflows/push-master.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ jobs:
8282

8383
- name: Upload artifacts (release)
8484
if: startsWith(github.event.ref, 'refs/tags') && github.event_name != 'pull_request'
85-
uses: actions/upload-artifact@v5.0.0
85+
uses: actions/upload-artifact@v6.0.0
8686
with:
8787
name: release-artifact-${{ matrix.architecture }}-${{ matrix.distroName }}-${{ matrix.distroVersion }}
8888
path: deploy/Hyper*
8989

9090
- name: Upload artifacts from commit
9191
if: startsWith(github.event.ref, 'refs/tags') == false && github.event_name != 'pull_request'
92-
uses: actions/upload-artifact@v5.0.0
92+
uses: actions/upload-artifact@v6.0.0
9393
with:
9494
name: Linux-${{ matrix.architecture }}-${{ matrix.distroName }}-${{ matrix.distroVersion }}-installer
9595
path: |
@@ -150,14 +150,14 @@ jobs:
150150

151151
- name: Upload artifacts (release)
152152
if: startsWith(github.event.ref, 'refs/tags') && github.event_name != 'pull_request'
153-
uses: actions/upload-artifact@v5.0.0
153+
uses: actions/upload-artifact@v6.0.0
154154
with:
155155
name: release-artifact-${{ matrix.JOB_RUNNER }}
156156
path: build/Hyper*.dmg
157157

158158
- name: Upload artifacts from commit
159159
if: startsWith(github.event.ref, 'refs/tags') == false && github.event_name != 'pull_request'
160-
uses: actions/upload-artifact@v5.0.0
160+
uses: actions/upload-artifact@v6.0.0
161161
with:
162162
name: Apple_macOS_${{ matrix.NICE_NAME }}_DMG_installer
163163
path: build/Hyper*.dmg
@@ -239,14 +239,14 @@ jobs:
239239

240240
- name: Upload artifacts (release)
241241
if: startsWith(github.event.ref, 'refs/tags') && github.event_name != 'pull_request'
242-
uses: actions/upload-artifact@v5.0.0
242+
uses: actions/upload-artifact@v6.0.0
243243
with:
244244
name: release-artifact-windows
245245
path: build/Hyper*
246246

247247
- name: Upload artifacts from commit
248248
if: startsWith(github.event.ref, 'refs/tags') == false && github.event_name != 'pull_request'
249-
uses: actions/upload-artifact@v5.0.0
249+
uses: actions/upload-artifact@v6.0.0
250250
with:
251251
name: Windows_x64_setup
252252
path: build/Hyper*.exe
@@ -344,7 +344,7 @@ jobs:
344344
pandoc report.md -f markdown -t html -s -o cpp_report.html
345345
346346
- name: Upload report artifact
347-
uses: actions/upload-artifact@v5.0.0
347+
uses: actions/upload-artifact@v6.0.0
348348
with:
349349
name: static-cpp-analysis-report
350350
path: |

.github/workflows/upload-to-github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
rm -r repo/pool/ArchLinux ||:
8282
8383
- name: Upload artifacts from commit
84-
uses: actions/upload-artifact@v5.0.0
84+
uses: actions/upload-artifact@v6.0.0
8585
with:
8686
name: release-artifact-${{ matrix.architecture }}-${{ matrix.distroName }}-${{ matrix.distroVersion }}
8787
path: repo

0 commit comments

Comments
 (0)