Skip to content

Commit 1a3c6e7

Browse files
Bump actions/upload-artifact from 4.5.0 to 4.6.1
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.5.0 to 4.6.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.5.0...v4.6.1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f96eafb commit 1a3c6e7

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

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

+1-1
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@v4.5.0
102+
- uses: actions/upload-artifact@v4.6.1
103103
with:
104104
name: ${{ steps.copy.outputs.image }}
105105
path: ${{ steps.copy.outputs.image }}.img.xz

.github/workflows/image-builder.yml

+1-1
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@v4.5.0
124+
- uses: actions/upload-artifact@v4.6.1
125125
with:
126126
name: ${{ steps.copy.outputs.image }}
127127
path: ${{ steps.copy.outputs.image }}.img

.github/workflows/push-master.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,15 @@ jobs:
133133
# Upload artifacts (only on tagged commit)
134134
- name: Upload artifacts
135135
if: startsWith(github.event.ref, 'refs/tags') && github.event_name != 'pull_request'
136-
uses: actions/upload-artifact@v4.5.0
136+
uses: actions/upload-artifact@v4.6.1
137137
with:
138138
name: release-artifact-${{ matrix.linuxVersion }}-${{ matrix.dockerImage }}
139139
path: deploy/Hyper*
140140

141141
# Upload artifacts from commit
142142
- name: Upload artifacts from commit
143143
if: (startsWith(github.event.ref, 'refs/tags') != true) && github.event_name != 'pull_request'
144-
uses: actions/upload-artifact@v4.5.0
144+
uses: actions/upload-artifact@v4.6.1
145145
with:
146146
name: Linux-${{ matrix.linuxVersion }}-${{ matrix.dockerImage }}-installer
147147
path: |
@@ -222,15 +222,15 @@ jobs:
222222
# Upload artifacts (only on tagged commit)
223223
- name: Upload artifacts
224224
if: startsWith(github.event.ref, 'refs/tags') && github.event_name != 'pull_request'
225-
uses: actions/upload-artifact@v4.5.0
225+
uses: actions/upload-artifact@v4.6.1
226226
with:
227227
name: release-artifact-${{ matrix.JOB_RUNNER }}
228228
path: build/Hyper*.dmg
229229

230230
# Upload artifacts from commit
231231
- name: Upload artifacts from commit
232232
if: (startsWith(github.event.ref, 'refs/tags') != true) && github.event_name != 'pull_request'
233-
uses: actions/upload-artifact@v4.5.0
233+
uses: actions/upload-artifact@v4.6.1
234234
with:
235235
name: Apple_macOS_${{ matrix.NICE_NAME }}_DMG_installer
236236
path: build/Hyper*.dmg
@@ -321,15 +321,15 @@ jobs:
321321
# Upload artifacts (only on tagged commit)
322322
- name: Upload artifacts
323323
if: startsWith(github.event.ref, 'refs/tags') && github.event_name != 'pull_request'
324-
uses: actions/upload-artifact@v4.5.0
324+
uses: actions/upload-artifact@v4.6.1
325325
with:
326326
name: release-artifact-windows
327327
path: build/Hyper*
328328

329329
# Upload artifacts from commit
330330
- name: Upload artifacts from commit
331331
if: (startsWith(github.event.ref, 'refs/tags') != true) && github.event_name != 'pull_request'
332-
uses: actions/upload-artifact@v4.5.0
332+
uses: actions/upload-artifact@v4.6.1
333333
with:
334334
name: Windows_x64_setup
335335
path: build/Hyper*.exe

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
rm -r repo/pool/ArchLinux ||:
133133
134134
- name: Upload artifacts from commit
135-
uses: actions/upload-artifact@v4.5.0
135+
uses: actions/upload-artifact@v4.6.1
136136
with:
137137
name: release-artifact-${{ matrix.linuxVersion }}-${{ matrix.dockerImage }}
138138
path: repo

0 commit comments

Comments
 (0)