File tree 2 files changed +9
-13
lines changed
2 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,10 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- uses : actions/checkout@v2
14
- # This has a matcher for test panics, so we use it even though elsewhere
15
- # we use actions-rs/toolchain.
16
- - uses : hecrj/setup-rust-action@v1
14
+ - uses : actions-rust-lang/setup-rust-toolchain@v1
17
15
with :
18
- rust-version : stable${{ matrix.host }}
19
- targets : ${{ matrix.target }}
16
+ toolchain : stable
17
+ target : ${{ matrix.target }}
20
18
components : ' rustfmt, clippy'
21
19
22
20
# cargo publish
Original file line number Diff line number Diff line change @@ -26,12 +26,10 @@ jobs:
26
26
runs-on : ${{ matrix.os }}
27
27
steps :
28
28
- uses : actions/checkout@v2
29
- # This has a matcher for test panics, so we use it even though elsewhere
30
- # we use actions-rs/toolchain.
31
- - uses : hecrj/setup-rust-action@v1
29
+ - uses : actions-rust-lang/setup-rust-toolchain@v1
32
30
with :
33
- rust-version : stable${{ matrix.host }}
34
- targets : ${{ matrix.target }}
31
+ toolchain : stable
32
+ target : ${{ matrix.target }}
35
33
components : ' rustfmt, clippy'
36
34
37
35
# download libduckdb
@@ -112,9 +110,9 @@ jobs:
112
110
key : index-${{ runner.os }}-${{ github.run_number }}
113
111
restore-keys : |
114
112
index-${{ runner.os }}-
115
- - uses : hecrj /setup-rust-action @v1
113
+ - uses : actions-rust-lang /setup-rust-toolchain @v1
116
114
with :
117
- rust-version : stable
118
- targets : x86_64-pc-windows-msvc
115
+ toolchain : stable
116
+ target : x86_64-pc-windows-msvc
119
117
120
118
- run : cargo install cargo-examples
You can’t perform that action at this time.
0 commit comments