Skip to content

Commit 234d408

Browse files
committed
ci: Use actions/checkout@v2.
There's a race condition with v1 that we seem to be encountering.
1 parent 3ebff45 commit 234d408

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/centos7.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
RNP_TESTS: rnp_tests
3838
env: ${{ matrix.env }}
3939
steps:
40-
- uses: actions/checkout@v1
40+
- uses: actions/checkout@v2
4141
- name: Add rnpuser
4242
run: |
4343
useradd rnpuser

.github/workflows/coverity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
timeout-minutes: 20
1818
steps:
19-
- uses: actions/checkout@v1
19+
- uses: actions/checkout@v2
2020
- name: Setup environment
2121
run: |
2222
. ci/gha/setup-env.inc.sh

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
if: "!contains(github.event.head_commit.message, 'skip ci')"
99
steps:
10-
- uses: actions/checkout@v1
10+
- uses: actions/checkout@v2
1111
- uses: DoozyX/clang-format-lint-action@v0.5
1212
with:
1313
clangFormatVersion: 9

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: "!contains(github.event.head_commit.message, 'skip ci')"
1919
timeout-minutes: 50
2020
steps:
21-
- uses: actions/checkout@v1
21+
- uses: actions/checkout@v2
2222
- name: Setup environment
2323
run: |
2424
. ci/gha/setup-env.inc.sh

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: "!contains(github.event.head_commit.message, 'skip ci')"
1919
timeout-minutes: 50
2020
steps:
21-
- uses: actions/checkout@v1
21+
- uses: actions/checkout@v2
2222
- name: Setup environment
2323
run: |
2424
. ci/gha/setup-env.inc.sh

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- name: Disable git eol translation
2222
run: git config --global core.autocrlf false
23-
- uses: actions/checkout@v1
23+
- uses: actions/checkout@v2
2424
- name: Add MSYS2 path
2525
uses: MSP-Greg/msys2-action/add_paths@master
2626
- name: Update MSYS2

0 commit comments

Comments
 (0)