Skip to content

Commit 8dd53c7

Browse files
committed
error fix
1 parent 6906164 commit 8dd53c7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ jobs:
2828
continue-on-error: ${{ matrix.experimental || false }}
2929
steps:
3030
- uses: actions/checkout@v3
31-
- uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
31+
- uses: dtolnay/rust-toolchain@master
3232
with:
33+
toolchain: ${{ matrix.toolchain }}
3334
targets: ${{ matrix.target }}
3435
- name: Build library
3536
run: cargo build --target ${{ matrix.target }} ${{ matrix.cargo_flags }}

.github/workflows/clippy.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ jobs:
2626
continue-on-error: ${{ matrix.experimental || false }}
2727
steps:
2828
- uses: actions/checkout@v3
29-
- uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
29+
- uses: dtolnay/rust-toolchain@master
3030
with:
31+
toolchain: ${{ matrix.toolchain }}
3132
components: clippy
3233
- name: Run clippy
3334
run: cargo clippy --all ${{ matrix.cargo_flags }} -- -D warnings

0 commit comments

Comments
 (0)