Skip to content

Commit

Permalink
Merge pull request #224 from waywardmonkeys/update-checkout-action
Browse files Browse the repository at this point in the history
ci: Update `actions/checkout` from v3 to v4.
  • Loading branch information
fitzgen committed Dec 12, 2023
2 parents a8ff2ad + 96d2bf4 commit c0b1137
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install rust channel
run: rustup install ${{matrix.rust_channel}} && rustup default ${{matrix.rust_channel}}

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run tests (no features)
run: cargo test --verbose
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Install miri
run: rustup toolchain install nightly --allow-downgrade --profile minimal --component miri

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run miri
run: cargo miri test --all-features
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Install valgrind
run: sudo apt update && sudo apt install valgrind

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Test under valgrind (no features)
run: cargo test --verbose
Expand All @@ -88,7 +88,7 @@ jobs:
- name: Install rust nightly
run: rustup install nightly && rustup default nightly

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Check that benches build
run: cargo check --benches --all-features

0 comments on commit c0b1137

Please sign in to comment.