mirror of
https://github.com/2e3s/awatcher.git
synced 2025-06-07 12:05:49 +00:00
Fix toolchain version for GHA
Yesterday "plugin" feature was removed, and one dependency uses it.
This commit is contained in:
parent
8eed243593
commit
e04d1de80e
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@ -15,7 +15,9 @@ jobs:
|
|||||||
AW_WEBUI_DIR: ${{ github.workspace }}/aw-webui/dist
|
AW_WEBUI_DIR: ${{ github.workspace }}/aw-webui/dist
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: dtolnay/rust-toolchain@nightly
|
- uses: dtolnay/rust-toolchain@master
|
||||||
|
with:
|
||||||
|
toolchain: nightly-2023-11-01
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
|
6
.github/workflows/verify.yml
vendored
6
.github/workflows/verify.yml
vendored
@ -24,8 +24,9 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- run: sudo apt-get install -y libdbus-1-dev
|
- run: sudo apt-get install -y libdbus-1-dev
|
||||||
- uses: dtolnay/rust-toolchain@nightly
|
- uses: dtolnay/rust-toolchain@master
|
||||||
with:
|
with:
|
||||||
|
toolchain: nightly-2023-11-01
|
||||||
components: clippy
|
components: clippy
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
- run: cargo clippy --locked --all-targets --all-features --workspace -- -D warnings
|
- run: cargo clippy --locked --all-targets --all-features --workspace -- -D warnings
|
||||||
@ -37,8 +38,9 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- run: sudo apt-get install -y libdbus-1-dev
|
- run: sudo apt-get install -y libdbus-1-dev
|
||||||
- uses: dtolnay/rust-toolchain@nightly
|
- uses: dtolnay/rust-toolchain@master
|
||||||
with:
|
with:
|
||||||
|
toolchain: nightly-2023-11-01
|
||||||
components: clippy
|
components: clippy
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
- run: cargo test --all-features --workspace
|
- run: cargo test --all-features --workspace
|
||||||
|
Loading…
x
Reference in New Issue
Block a user