Skip to content

Commit c74b67f

Browse files
committed
using the latest version of actions/checkout
1 parent 01478b9 commit c74b67f

File tree

2 files changed

+2
-42
lines changed

2 files changed

+2
-42
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -20,29 +20,9 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: [ubuntu-latest,macos-latest,windows-latest]
23-
rust: [nightly]
24-
include:
25-
- os: macOS-latest
26-
rust: 'nightly'
27-
components: 'rustfmt, clippy, rust-src'
28-
targets: 'x86_64-apple-darwin'
29-
- os: windows-latest
30-
rust: 'nightly'
31-
components: 'rustfmt, clippy, rust-src'
32-
targets: 'x86_64-pc-windows-msvc'
33-
- os: ubuntu-latest
34-
rust: 'nightly'
35-
components: 'rustfmt, clippy, rust-src'
36-
targets: 'x86_64-unknown-linux-musl'
37-
3823

3924
steps:
40-
- uses: hecrj/setup-rust-action@v1
41-
with:
42-
rust-version: ${{ matrix.rust }}
43-
components: ${{ matrix.components || '' }}
44-
targets: ${{ matrix.targets || '' }}
45-
- uses: actions/checkout@v1
25+
- uses: actions/checkout@v2
4626
with:
4727
submodules: true
4828
- name: Check Cargo availability

.github/workflows/format.yml

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -18,29 +18,9 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest]
21-
rust: [nightly]
22-
include:
23-
- os: macOS-latest
24-
rust: 'nightly'
25-
components: 'rustfmt, clippy'
26-
targets: 'x86_64-apple-darwin'
27-
- os: windows-latest
28-
rust: 'nightly'
29-
components: 'rustfmt, clippy'
30-
targets: 'x86_64-pc-windows-msvc'
31-
- os: ubuntu-latest
32-
rust: 'nightly'
33-
components: 'rustfmt, clippy'
34-
targets: 'x86_64-unknown-linux-musl'
35-
3621

3722
steps:
38-
- uses: hecrj/setup-rust-action@v1
39-
with:
40-
rust-version: ${{ matrix.rust }}
41-
components: ${{ matrix.components || '' }}
42-
targets: ${{ matrix.targets || '' }}
43-
- uses: actions/checkout@v1
23+
- uses: actions/checkout@v2
4424
with:
4525
submodules: true
4626
- name: Check Cargo availability

0 commit comments

Comments
 (0)