Skip to content

Commit

Permalink
Update actions/checkout in GitHub Actions workflows to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Apr 26, 2024
1 parent 9a25bc0 commit f7b99e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
os: windows-2022
rust: stable-x86_64-gnu
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust (rustup)
run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
shell: bash
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable && rustup default stable && rustup component add rustfmt
- run: cargo fmt -- --check
Expand All @@ -70,7 +70,7 @@ jobs:
matrix:
target: [wasm32-unknown-unknown, wasm32-wasi]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable && rustup default stable && rustup target add ${{ matrix.target }}
- run: cargo build --target ${{ matrix.target }}

0 comments on commit f7b99e9

Please sign in to comment.