Skip to content

Commit

Permalink
ci: move nightly rust versions to vars
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Nov 14, 2024
1 parent 8084cec commit ee031c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Rust (nightly-2023-10-10)
- name: Install Rust (${{ vars.RUST_VERSION_EXTERNAL_TYPES }})
uses: actions-rust-lang/[email protected]
with:
toolchain: nightly-2023-10-10
toolchain: ${{ vars.RUST_VERSION_EXTERNAL_TYPES }}

- name: Install just
uses: taiki-e/[email protected]
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Install cargo-check-external-types
uses: taiki-e/[email protected]
with:
tool: cargo-check-external-types@0.1.10
tool: cargo-check-external-types

- name: check external types
run: just check-external-types-all +nightly-2023-10-10
run: just check-external-types-all +${{ vars.RUST_VERSION_EXTERNAL_TYPES }}

0 comments on commit ee031c2

Please sign in to comment.