-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): bump actions/upload-artifact from 4.4.0 to 4.4.1
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.0 to 4.4.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.4.0...v4.4.1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
eb1b8f9
commit 3f6fae4
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,7 +98,7 @@ jobs: | |
- run: | | ||
echo "Building ${{ env.BIN }}" | ||
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
name: "${{ env.BIN }}" | ||
path: "snclient" | ||
|
@@ -125,7 +125,7 @@ jobs: | |
- run: | | ||
echo "Building ${{ env.BIN }}" | ||
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
name: "${{ env.BIN }}" | ||
path: "snclient" | ||
|
@@ -158,7 +158,7 @@ jobs: | |
cp rsrc_windows*.syso cmd/snclient/ | ||
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build | ||
mv snclient snclient.exe | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
name: "${{ env.BIN }}" | ||
path: "snclient.exe" | ||
|
@@ -200,7 +200,7 @@ jobs: | |
Write-Host "Verify snclient.exe" | ||
& "C:/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x86/signtool.exe" verify /pa snclient.exe | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
name: "${{ env.BIN }}" | ||
path: "snclient.exe" | ||
|
@@ -222,7 +222,7 @@ jobs: | |
echo "Creating dist folder for linux/osx" | ||
make dist | ||
rm dist/snclient | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
name: "dist" | ||
path: "dist" | ||
|
@@ -243,7 +243,7 @@ jobs: | |
echo "Creating dist folder for windows" | ||
make windist | ||
rm dist/snclient | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
name: "windist" | ||
path: "windist" | ||
|
@@ -299,7 +299,7 @@ jobs: | |
Write-Host "Verify snclient.msi" | ||
& "C:/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x86/signtool.exe" verify /pa ${{ env.BIN }}.msi | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
name: "${{ env.BIN }}.msi" | ||
path: "${{ env.BIN }}.msi" | ||
|
@@ -336,7 +336,7 @@ jobs: | |
export DEBFULLNAME="Sven Nierlein" | ||
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} VERSION=${{needs.get-version.outputs.version}} make deb | ||
mv snclient*.deb ${{ env.BIN }}.deb | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
name: "${{ env.BIN }}.deb" | ||
path: "${{ env.BIN }}.deb" | ||
|
@@ -369,7 +369,7 @@ jobs: | |
echo "Building ${{ env.BIN }}.rpm" | ||
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} VERSION=${{needs.get-version.outputs.version}} make rpm | ||
mv snclient*.rpm ${{ env.BIN }}.rpm | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
name: "${{ env.BIN }}.rpm" | ||
path: "${{ env.BIN }}.rpm" | ||
|
@@ -404,7 +404,7 @@ jobs: | |
export PATH="/usr/local/opt/openssl@3/bin:$PATH" | ||
make osx | ||
mv snclient*.pkg ${{ env.DIST }}.pkg | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].1 | ||
with: | ||
name: "${{ env.DIST }}.pkg" | ||
path: "${{ env.DIST }}.pkg" | ||
|