Skip to content

Commit

Permalink
chore(deps): update github artifact actions to v4 (#1149)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored May 29, 2024
1 parent f76a001 commit bec224b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: cargo build --release
env:
RUSTFLAGS: "-C target-feature=+crt-static"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: fnm-windows
path: target/release/fnm.exe
Expand All @@ -85,7 +85,7 @@ jobs:
run: strip target/release/fnm
- name: List dynamically linked libraries
run: otool -L target/release/fnm
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: fnm-macos
path: target/release/fnm
Expand All @@ -98,7 +98,7 @@ jobs:
- name: install necessary shells
run: brew install fish zsh bash
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: fnm-macos
path: target/release
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
name: "e2e/windows"
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: fnm-windows
path: target/release
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
- name: install necessary shells
run: sudo apt-get update && sudo apt-get install -y fish zsh bash
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: fnm-linux
path: target/release
Expand Down Expand Up @@ -254,7 +254,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@v3
- uses: actions/upload-artifact@v4
with:
name: fnm-linux
path: target/x86_64-unknown-linux-musl/release/fnm
Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:
echo "fnm exec --using=12 -- node --version"
/artifacts/fnm exec --using=12 -- node --version
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: fnm-${{ matrix.arch }}
path: target/${{ env.RUST_TARGET }}/release/fnm
Expand All @@ -328,7 +328,7 @@ jobs:
- name: install necessary shells
run: sudo apt-get update && sudo apt-get install -y fish zsh bash
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: fnm-linux
path: target/release
Expand Down

0 comments on commit bec224b

Please sign in to comment.