Skip to content

Commit

Permalink
Use actions/checkout@v2 (instead of @master) (#3846)
Browse files Browse the repository at this point in the history
The actions/checkout@v2 GitHub action seemed to cause issues with the codecov/codecov-action@v1 before, but it seems this is not (or no longer) the case.
  • Loading branch information
CasperWA authored Mar 12, 2020
1 parent 733861a commit 1246553
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
timeout-minutes: 30

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

- name: Set up Python 3.7
uses: actions/setup-python@v1
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
timeout-minutes: 30

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

- name: Set up Python 3.7
uses: actions/setup-python@v1
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
python-version: [3.5, 3.8]

steps:
- uses: actions/checkout@master
- uses: actions/checkout@v2
- uses: CasperWA/[email protected]
with:
postgresql version: '10'
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
timeout-minutes: 30

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

- name: Set up Python 3.7
uses: actions/setup-python@v1
Expand All @@ -165,7 +165,7 @@ jobs:
timeout-minutes: 30

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

- name: Install docker
run: |
Expand Down

0 comments on commit 1246553

Please sign in to comment.