Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/upload-artifact from 4.4.0 to 4.4.1 #164

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
- run: |
echo "Building ${{ env.BIN }}"
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build
- uses: actions/upload-artifact@v4.4.0
- uses: actions/upload-artifact@v4.4.1
with:
name: "${{ env.BIN }}"
path: "snclient"
Expand All @@ -125,7 +125,7 @@ jobs:
- run: |
echo "Building ${{ env.BIN }}"
GOOS=${{ matrix.go-os }} GOARCH=${{ matrix.go-arch }} make build
- uses: actions/upload-artifact@v4.4.0
- uses: actions/upload-artifact@v4.4.1
with:
name: "${{ env.BIN }}"
path: "snclient"
Expand Down Expand Up @@ -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/upload-artifact@v4.4.0
- uses: actions/upload-artifact@v4.4.1
with:
name: "${{ env.BIN }}"
path: "snclient.exe"
Expand Down Expand Up @@ -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/upload-artifact@v4.4.0
- uses: actions/upload-artifact@v4.4.1
with:
name: "${{ env.BIN }}"
path: "snclient.exe"
Expand All @@ -222,7 +222,7 @@ jobs:
echo "Creating dist folder for linux/osx"
make dist
rm dist/snclient
- uses: actions/upload-artifact@v4.4.0
- uses: actions/upload-artifact@v4.4.1
with:
name: "dist"
path: "dist"
Expand All @@ -243,7 +243,7 @@ jobs:
echo "Creating dist folder for windows"
make windist
rm dist/snclient
- uses: actions/upload-artifact@v4.4.0
- uses: actions/upload-artifact@v4.4.1
with:
name: "windist"
path: "windist"
Expand Down Expand Up @@ -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/upload-artifact@v4.4.0
- uses: actions/upload-artifact@v4.4.1
with:
name: "${{ env.BIN }}.msi"
path: "${{ env.BIN }}.msi"
Expand Down Expand Up @@ -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/upload-artifact@v4.4.0
- uses: actions/upload-artifact@v4.4.1
with:
name: "${{ env.BIN }}.deb"
path: "${{ env.BIN }}.deb"
Expand Down Expand Up @@ -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/upload-artifact@v4.4.0
- uses: actions/upload-artifact@v4.4.1
with:
name: "${{ env.BIN }}.rpm"
path: "${{ env.BIN }}.rpm"
Expand Down Expand Up @@ -404,7 +404,7 @@ jobs:
export PATH="/usr/local/opt/openssl@3/bin:$PATH"
make osx
mv snclient*.pkg ${{ env.DIST }}.pkg
- uses: actions/upload-artifact@v4.4.0
- uses: actions/upload-artifact@v4.4.1
with:
name: "${{ env.DIST }}.pkg"
path: "${{ env.DIST }}.pkg"
Expand Down