Skip to content

Commit 29e76c9

Browse files
build(deps): bump actions/upload-artifact from 5.0.0 to 6.0.0 (#302)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 177dff1 commit 29e76c9

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/artifacts.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- run: |
5858
echo "Building ${{ env.BIN }}"
5959
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build
60-
- uses: actions/upload-artifact@v5.0.0
60+
- uses: actions/upload-artifact@v6.0.0
6161
with:
6262
name: "${{ env.BIN }}"
6363
path: "snclient"
@@ -84,7 +84,7 @@ jobs:
8484
- run: |
8585
echo "Building ${{ env.BIN }}"
8686
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build
87-
- uses: actions/upload-artifact@v5.0.0
87+
- uses: actions/upload-artifact@v6.0.0
8888
with:
8989
name: "${{ env.BIN }}"
9090
path: "snclient"
@@ -114,7 +114,7 @@ jobs:
114114
make rsrc_windows
115115
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build
116116
mv snclient snclient.exe
117-
- uses: actions/upload-artifact@v5.0.0
117+
- uses: actions/upload-artifact@v6.0.0
118118
with:
119119
name: "${{ env.BIN }}"
120120
path: "snclient.exe"
@@ -171,7 +171,7 @@ jobs:
171171
Write-Host "Verify snclient.exe"
172172
& "C:/Program Files (x86)/Windows Kits/10/bin/10.0.26100.0/x86/signtool.exe" verify /pa snclient.exe
173173
174-
- uses: actions/upload-artifact@v5.0.0
174+
- uses: actions/upload-artifact@v6.0.0
175175
with:
176176
name: "${{ env.BIN }}"
177177
path: "snclient.exe"

.github/workflows/builds.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
- run: |
133133
echo "Building ${{ env.BIN }}"
134134
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build
135-
- uses: actions/upload-artifact@v5.0.0
135+
- uses: actions/upload-artifact@v6.0.0
136136
with:
137137
name: "${{ env.BIN }}"
138138
path: "snclient"
@@ -159,7 +159,7 @@ jobs:
159159
- run: |
160160
echo "Building ${{ env.BIN }}"
161161
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build
162-
- uses: actions/upload-artifact@v5.0.0
162+
- uses: actions/upload-artifact@v6.0.0
163163
with:
164164
name: "${{ env.BIN }}"
165165
path: "snclient"
@@ -189,7 +189,7 @@ jobs:
189189
make rsrc_windows
190190
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build
191191
mv snclient snclient.exe
192-
- uses: actions/upload-artifact@v5.0.0
192+
- uses: actions/upload-artifact@v6.0.0
193193
with:
194194
name: "${{ env.BIN }}"
195195
path: "snclient.exe"
@@ -246,7 +246,7 @@ jobs:
246246
Write-Host "Verify snclient.exe"
247247
& "C:/Program Files (x86)/Windows Kits/10/bin/10.0.26100.0/x86/signtool.exe" verify /pa snclient.exe
248248
249-
- uses: actions/upload-artifact@v5.0.0
249+
- uses: actions/upload-artifact@v6.0.0
250250
with:
251251
name: "${{ env.BIN }}"
252252
path: "snclient.exe"
@@ -268,7 +268,7 @@ jobs:
268268
echo "Creating dist folder for linux/osx"
269269
make dist
270270
rm dist/snclient
271-
- uses: actions/upload-artifact@v5.0.0
271+
- uses: actions/upload-artifact@v6.0.0
272272
with:
273273
name: "dist"
274274
path: "dist"
@@ -289,7 +289,7 @@ jobs:
289289
echo "Creating dist folder for windows"
290290
make windist
291291
rm dist/snclient
292-
- uses: actions/upload-artifact@v5.0.0
292+
- uses: actions/upload-artifact@v6.0.0
293293
with:
294294
name: "windist"
295295
path: "windist"
@@ -361,7 +361,7 @@ jobs:
361361
Write-Host "Verify snclient.msi"
362362
& "C:/Program Files (x86)/Windows Kits/10/bin/10.0.26100.0/x86/signtool.exe" verify /pa ${{ env.BIN }}.msi
363363
364-
- uses: actions/upload-artifact@v5.0.0
364+
- uses: actions/upload-artifact@v6.0.0
365365
with:
366366
name: "${{ env.BIN }}.msi"
367367
path: "${{ env.BIN }}.msi"
@@ -398,7 +398,7 @@ jobs:
398398
export DEBFULLNAME="Sven Nierlein"
399399
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} VERSION=${{needs.get-version.outputs.version}} make deb
400400
mv snclient*.deb ${{ env.BIN }}.deb
401-
- uses: actions/upload-artifact@v5.0.0
401+
- uses: actions/upload-artifact@v6.0.0
402402
with:
403403
name: "${{ env.BIN }}.deb"
404404
path: "${{ env.BIN }}.deb"
@@ -431,7 +431,7 @@ jobs:
431431
echo "Building ${{ env.BIN }}.rpm"
432432
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} VERSION=${{needs.get-version.outputs.version}} make rpm
433433
mv snclient*.rpm ${{ env.BIN }}.rpm
434-
- uses: actions/upload-artifact@v5.0.0
434+
- uses: actions/upload-artifact@v6.0.0
435435
with:
436436
name: "${{ env.BIN }}.rpm"
437437
path: "${{ env.BIN }}.rpm"
@@ -486,7 +486,7 @@ jobs:
486486
echo "Building ${{ env.BIN }}.apk"
487487
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} VERSION=${{needs.get-version.outputs.version}} make apk
488488
mv snclient*.apk ${{ env.BIN }}.apk
489-
- uses: actions/upload-artifact@v5.0.0
489+
- uses: actions/upload-artifact@v6.0.0
490490
with:
491491
name: "${{ env.BIN }}.apk"
492492
path: "${{ env.BIN }}.apk"
@@ -521,7 +521,7 @@ jobs:
521521
export PATH="/usr/local/opt/openssl@3/bin:$PATH"
522522
make osx
523523
mv snclient*.pkg ${{ env.DIST }}.pkg
524-
- uses: actions/upload-artifact@v5.0.0
524+
- uses: actions/upload-artifact@v6.0.0
525525
with:
526526
name: "${{ env.DIST }}.pkg"
527527
path: "${{ env.DIST }}.pkg"

0 commit comments

Comments
 (0)