Skip to content

Commit ae98af4

Browse files
dependabot[bot]sni
authored andcommitted
build(deps): bump actions/upload-artifact from 4.5.0 to 4.6.0
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.5.0 to 4.6.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.5.0...v4.6.0) --- 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 121c6f5 commit ae98af4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/builds.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
- run: |
121121
echo "Building ${{ env.BIN }}"
122122
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build
123-
- uses: actions/upload-artifact@v4.5.0
123+
- uses: actions/upload-artifact@v4.6.0
124124
with:
125125
name: "${{ env.BIN }}"
126126
path: "snclient"
@@ -147,7 +147,7 @@ jobs:
147147
- run: |
148148
echo "Building ${{ env.BIN }}"
149149
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build
150-
- uses: actions/upload-artifact@v4.5.0
150+
- uses: actions/upload-artifact@v4.6.0
151151
with:
152152
name: "${{ env.BIN }}"
153153
path: "snclient"
@@ -177,7 +177,7 @@ jobs:
177177
make rsrc_windows
178178
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build
179179
mv snclient snclient.exe
180-
- uses: actions/upload-artifact@v4.5.0
180+
- uses: actions/upload-artifact@v4.6.0
181181
with:
182182
name: "${{ env.BIN }}"
183183
path: "snclient.exe"
@@ -230,7 +230,7 @@ jobs:
230230
Write-Host "Verify snclient.exe"
231231
& "C:/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x86/signtool.exe" verify /pa snclient.exe
232232
233-
- uses: actions/upload-artifact@v4.5.0
233+
- uses: actions/upload-artifact@v4.6.0
234234
with:
235235
name: "${{ env.BIN }}"
236236
path: "snclient.exe"
@@ -252,7 +252,7 @@ jobs:
252252
echo "Creating dist folder for linux/osx"
253253
make dist
254254
rm dist/snclient
255-
- uses: actions/upload-artifact@v4.5.0
255+
- uses: actions/upload-artifact@v4.6.0
256256
with:
257257
name: "dist"
258258
path: "dist"
@@ -273,7 +273,7 @@ jobs:
273273
echo "Creating dist folder for windows"
274274
make windist
275275
rm dist/snclient
276-
- uses: actions/upload-artifact@v4.5.0
276+
- uses: actions/upload-artifact@v4.6.0
277277
with:
278278
name: "windist"
279279
path: "windist"
@@ -340,7 +340,7 @@ jobs:
340340
Write-Host "Verify snclient.msi"
341341
& "C:/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x86/signtool.exe" verify /pa ${{ env.BIN }}.msi
342342
343-
- uses: actions/upload-artifact@v4.5.0
343+
- uses: actions/upload-artifact@v4.6.0
344344
with:
345345
name: "${{ env.BIN }}.msi"
346346
path: "${{ env.BIN }}.msi"
@@ -377,7 +377,7 @@ jobs:
377377
export DEBFULLNAME="Sven Nierlein"
378378
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} VERSION=${{needs.get-version.outputs.version}} make deb
379379
mv snclient*.deb ${{ env.BIN }}.deb
380-
- uses: actions/upload-artifact@v4.5.0
380+
- uses: actions/upload-artifact@v4.6.0
381381
with:
382382
name: "${{ env.BIN }}.deb"
383383
path: "${{ env.BIN }}.deb"
@@ -410,7 +410,7 @@ jobs:
410410
echo "Building ${{ env.BIN }}.rpm"
411411
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} VERSION=${{needs.get-version.outputs.version}} make rpm
412412
mv snclient*.rpm ${{ env.BIN }}.rpm
413-
- uses: actions/upload-artifact@v4.5.0
413+
- uses: actions/upload-artifact@v4.6.0
414414
with:
415415
name: "${{ env.BIN }}.rpm"
416416
path: "${{ env.BIN }}.rpm"
@@ -445,7 +445,7 @@ jobs:
445445
export PATH="/usr/local/opt/openssl@3/bin:$PATH"
446446
make osx
447447
mv snclient*.pkg ${{ env.DIST }}.pkg
448-
- uses: actions/upload-artifact@v4.5.0
448+
- uses: actions/upload-artifact@v4.6.0
449449
with:
450450
name: "${{ env.DIST }}.pkg"
451451
path: "${{ env.DIST }}.pkg"

0 commit comments

Comments
 (0)