Skip to content

Commit 4ae6cea

Browse files
committed
fix: correct Rust toolchain action name in workflows
1 parent 9afaddd commit 4ae6cea

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ jobs:
1616
- uses: actions/checkout@v4
1717

1818
- name: Install Rust
19-
uses: dtolnay/rust-action@stable
19+
uses: dtolnay/rust-toolchain@stable
2020
with:
21-
toolchain: stable
2221
components: clippy, rustfmt
2322

2423
- name: Cache cargo

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ jobs:
2828
- uses: actions/checkout@v4
2929

3030
- name: Install Rust
31-
uses: dtolnay/rust-action@stable
31+
uses: dtolnay/rust-toolchain@stable
3232
with:
33-
toolchain: stable
3433
targets: ${{ matrix.target }}
3534

3635
- name: Build

0 commit comments

Comments
 (0)