Skip to content

Commit

Permalink
update actions/checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Apr 27, 2024
1 parent 724c3be commit 18e3122
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Run tests
run: cargo test --color always --all
Expand All @@ -23,7 +23,7 @@ jobs:
name: Rust beta channel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@beta
- name: Run tests
run: cargo test --color always --all
Expand All @@ -33,7 +33,7 @@ jobs:
name: clippy and rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
Expand All @@ -43,7 +43,7 @@ jobs:
name: examples
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo run --example execute
- run: cargo run --example wat
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
Expand Down

0 comments on commit 18e3122

Please sign in to comment.