Skip to content

Commit 129e39b

Browse files
committed
fix toolchains again
1 parent 091c935 commit 129e39b

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/rust_build_and_test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ jobs:
6666
with:
6767
toolchain: ${{ matrix.rust}}
6868
target: ${{ matrix.target.name }}
69-
components: rustc, rust-std, cargo
7069
- name: Install Linker
7170
if: matrix.cross
7271
run: |

.github/workflows/rust_doc_generator.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ jobs:
1717
- name: Setup rust
1818
uses: dtolnay/rust-toolchain@master
1919
with:
20-
toolchain: ${{ matrix.rust}}
21-
target: ${{ matrix.target.name }}
22-
components: rustc, rust-std, cargo
23-
20+
toolchain: nightly
21+
components: rustfmt, rust-src
2422
- name: Build
2523
uses: actions-rs/[email protected]
2624
with:

.github/workflows/security_analyses.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ jobs:
2424
- name: Setup rust
2525
uses: dtolnay/rust-toolchain@master
2626
with:
27-
toolchain: ${{ matrix.rust}}
28-
target: ${{ matrix.target.name }}
29-
components: rustc, rust-std, cargo
27+
toolchain: nightly
28+
components: clippy
3029
- uses: Swatinem/rust-cache@v2
3130
with:
3231
shared-key: security-analyses--branch--${{ github.ref }}

0 commit comments

Comments
 (0)