Skip to content

Commit

Permalink
Updated github action dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
orium committed Feb 12, 2024
1 parent 5d0707b commit 37c6df2
Showing 1 changed file with 10 additions and 17 deletions.
27 changes: 10 additions & 17 deletions .github/workflows/ci.yml
Expand Up @@ -11,7 +11,7 @@ on:
env:
CARGO_TERM_COLOR: always
# Miri breaks frequently, so we pin it to a specific nightly version.
MIRI_TOOLCHAIN: nightly-2023-09-02
MIRI_TOOLCHAIN: nightly-2024-02-11

jobs:
check:
Expand All @@ -22,29 +22,25 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, rust-src

- name: Install miri
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.MIRI_TOOLCHAIN }}
override: false
default: false
components: miri, rust-src

- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, rust-src

- name: Install cargo plugins
run: |
cargo install cargo-rdme
cargo install cargo-deadlinks
cargo install cargo-criterion
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 2
uses: actions/checkout@v4

- name: Check everything
run: bash ./tools/check.sh
Expand All @@ -64,13 +60,10 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Install cargo plugins
run: |
cargo install cargo-msrv
run: cargo install cargo-msrv

- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 2
uses: actions/checkout@v4

- name: Check the minimum supported rust version
run: cargo msrv verify

0 comments on commit 37c6df2

Please sign in to comment.