Skip to content

Commit f62c777

Browse files
committed
using the latest version of actions/checkout
1 parent da77bd5 commit f62c777

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
@@ -18,29 +18,9 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest,macos-latest,windows-latest]
21-
rust: [nightly]
22-
include:
23-
- os: macOS-latest
24-
rust: 'nightly'
25-
components: 'rustfmt, clippy, rust-src'
26-
targets: 'x86_64-apple-darwin'
27-
- os: windows-latest
28-
rust: 'nightly'
29-
components: 'rustfmt, clippy, rust-src'
30-
targets: 'x86_64-pc-windows-msvc'
31-
- os: ubuntu-latest
32-
rust: 'nightly'
33-
components: 'rustfmt, clippy, rust-src'
34-
targets: 'x86_64-unknown-linux-musl'
35-
3621

3722
steps:
38-
- uses: hecrj/[email protected]
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

.github/workflows/format.yml

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

3520
steps:
36-
- uses: hecrj/[email protected]
37-
with:
38-
rust-version: ${{ matrix.rust }}
39-
components: ${{ matrix.components || '' }}
40-
targets: ${{ matrix.targets || '' }}
41-
- uses: actions/checkout@v1
21+
- uses: actions/checkout@v2
4222
with:
4323
submodules: true
4424
- name: Check Cargo availability

0 commit comments

Comments
 (0)