Skip to content

Commit bffe68d

Browse files
committed
Migrate to actions-rust-lang/setup-rust-toolchain
actions-rs/toolchain seems to be abandoned and it's triggering warnings about the use of node12.
1 parent 98d0d6c commit bffe68d

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@ jobs:
2121
linux-armv7-rpi:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions-rs/toolchain@v1
24+
- uses: actions-rust-lang/setup-rust-toolchain@v1
2525
with:
26-
profile: minimal
2726
toolchain: stable
28-
default: true
2927
target: armv7-unknown-linux-gnueabihf
3028
- uses: actions/checkout@v4
3129
- run: sudo apt update

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,11 @@ jobs:
2121
lint:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions-rs/toolchain@v1
24+
- uses: actions-rust-lang/setup-rust-toolchain@v1
2525
with:
26-
profile: minimal
2726
# Use the latest stable Rust version for lint checks to
2827
# verify any new Clippy warnings that may appear.
2928
toolchain: stable
30-
default: true
3129
components: clippy, rustfmt
3230
- uses: actions/checkout@v4
3331
- run: sudo apt update

0 commit comments

Comments
 (0)