Skip to content

Commit 8b3266d

Browse files
authored
github actions: pin checkout action to v1 (#145)
master now contains a new v2 beta version of this action that no longer supports "submodules". We can update to v2 later once it stabilizes.
1 parent 410c660 commit 8b3266d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
matrix:
1010
os: [ubuntu-latest, macos-latest, windows-latest]
1111
steps:
12-
- uses: actions/checkout@master
12+
- uses: actions/checkout@v1
1313
with:
1414
submodules: true
1515
- name: Install Rust (rustup)
@@ -32,7 +32,7 @@ jobs:
3232
name: Rustfmt
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@master
35+
- uses: actions/checkout@v1
3636
with:
3737
submodules: true
3838
- name: Install Rust

0 commit comments

Comments
 (0)