Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jedleggett committed Dec 20, 2023
1 parent 913de5b commit fb19f21
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/actions/setup-rust/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ runs:

- name: Install cargo dependencies
run: |
rustup install 1.73.0-x86_64-unknown-linux-gnu
rustup component add rustfmt --toolchain 1.73.0-x86_64-unknown-linux-gnu
rustup component add clippy --toolchain 1.73.0-x86_64-unknown-linux-gnu
rustup install nightly-2023-12-05
rustup component add rustfmt --toolchain nightly-2023-12-05-x86_64-unknown-linux-gnu
rustup component add clippy --toolchain nightly-2023-12-05-x86_64-unknown-linux-gnu
cargo install cargo-udeps --locked
cargo install cargo-sort
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/clean_code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
caller-workflow-name: clippy_and_udeps_check

- name: cargo clippy
run: cargo +1.73.0-x86_64-unknown-linux-gnu clippy --all-targets
run: cargo +nightly-2023-12-05-x86_64-unknown-linux-gnu clippy --all-targets

- name: cargo udeps
run: cargo +nightly udeps --locked
run: cargo +nightly-2023-12-05-x86_64-unknown-linux-gnu udeps --locked

0 comments on commit fb19f21

Please sign in to comment.