Browse Source

chore(deps): update actions/upload-artifact action to v3 (#690)

Co-authored-by: Renovate Bot <bot@renovateapp.com>
remotes/origin/feat/support-install-latest
renovate[bot] 3 years ago committed by GitHub
parent
commit
90b51c6606
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .github/workflows/rust.yml

8
.github/workflows/rust.yml

@ -71,7 +71,7 @@ jobs: @@ -71,7 +71,7 @@ jobs:
run: cargo build --release
env:
RUSTFLAGS: "-C target-feature=+crt-static"
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: fnm-windows
path: target/release/fnm.exe
@ -92,7 +92,7 @@ jobs: @@ -92,7 +92,7 @@ jobs:
run: strip target/release/fnm
- name: List dynamically linked libraries
run: otool -L target/release/fnm
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: fnm-macos
path: target/release/fnm
@ -114,7 +114,7 @@ jobs: @@ -114,7 +114,7 @@ jobs:
run: cargo build --release --target x86_64-unknown-linux-musl
- name: Strip binary from debug symbols
run: strip target/x86_64-unknown-linux-musl/release/fnm
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: fnm-linux
path: target/x86_64-unknown-linux-musl/release/fnm
@ -176,7 +176,7 @@ jobs: @@ -176,7 +176,7 @@ jobs:
echo "fnm exec --using=12 -- node --version"
/artifacts/fnm exec --using=12 -- node --version
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: fnm-${{ matrix.arch }}
path: target/${{ env.RUST_TARGET }}/release/fnm

Loading…
Cancel
Save