Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Revert Checkout Action to V1
Browse files Browse the repository at this point in the history
Revert actions/checkout to V1 from V2, as there are existing bugs within
checkout@V2 causing it to possibly checkout the wrong commit SHA.

See:
 - actions/checkout#299
 - quisquous#1600
panicstevenson committed Jul 25, 2020

Verified

This commit was signed with the committer’s verified signature.
panicstevenson Panic Stevenson
1 parent fa20660 commit 801ca1f
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-artifact.yml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v1

- name: Set artifact name
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/css-lint.yml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v2-beta
with:
2 changes: 1 addition & 1 deletion .github/workflows/javascript-lint.yml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v2-beta
with:
2 changes: 1 addition & 1 deletion .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v2-beta
with:
4 changes: 2 additions & 2 deletions .github/workflows/python-lint.yml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v1
- name: Setup Python
uses: actions/setup-python@v2
with:
@@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v1
- name: Setup Python
uses: actions/setup-python@v2
with:
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v2-beta
with:

0 comments on commit 801ca1f

Please sign in to comment.