Skip to content

Commit

Permalink
Fix toolchain version for GHA
Browse files Browse the repository at this point in the history
Yesterday "plugin" feature was removed,
and one dependency uses it.
  • Loading branch information
2e3s committed Nov 5, 2023
1 parent 8eed243 commit 8405ea2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
AW_WEBUI_DIR: ${{ github.workspace }}/aw-webui/dist
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
- uses: dtolnay/rust-toolchain
with:
toolchain: nightly-2023-11-01
- name: Install dependencies
run: |
sudo apt-get update
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: sudo apt-get install -y libdbus-1-dev
- uses: dtolnay/rust-toolchain@nightly
- uses: dtolnay/rust-toolchain
with:
toolchain: nightly-2023-11-01
components: clippy
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --locked --all-targets --all-features --workspace -- -D warnings
Expand All @@ -39,6 +40,7 @@ jobs:
- run: sudo apt-get install -y libdbus-1-dev
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-11-01
components: clippy
- uses: Swatinem/rust-cache@v2
- run: cargo test --all-features --workspace

0 comments on commit 8405ea2

Please sign in to comment.