Skip to content

Commit e29108d

Browse files
authored
Remove usages of deprecated actions-rs (#43)
1 parent 8cbbe15 commit e29108d

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ jobs:
1212
runs-on: ${{ matrix.platform }}
1313
steps:
1414
- uses: actions/checkout@v3
15-
- uses: actions-rs/toolchain@v1
15+
- uses: dtolnay/rust-toolchain@master
1616
with:
1717
toolchain: ${{ matrix.toolchain }}
18-
override: true
1918
- name: Build
2019
run: cargo build --release --all-features
2120
no_std:
@@ -27,10 +26,9 @@ jobs:
2726
runs-on: ${{ matrix.platform }}
2827
steps:
2928
- uses: actions/checkout@v3
30-
- uses: actions-rs/toolchain@v1
29+
- uses: dtolnay/rust-toolchain@master
3130
with:
3231
toolchain: ${{ matrix.toolchain }}
33-
override: true
3432
- name: Build
3533
working-directory: no_std
3634
run: cargo build --release --all-features
@@ -42,10 +40,9 @@ jobs:
4240
runs-on: ubuntu-latest
4341
steps:
4442
- uses: actions/checkout@v3
45-
- uses: actions-rs/toolchain@v1
43+
- uses: dtolnay/rust-toolchain@master
4644
with:
4745
toolchain: nightly
48-
override: true
4946
- name: Build
5047
working-directory: ${{ matrix.project_dir }}
5148
run: >

0 commit comments

Comments
 (0)