Skip to content

Commit

Permalink
Downgrade version of checkout action
Browse files Browse the repository at this point in the history
Apparently v2 of the action does not maintain enough information for
setuptools-scm to work properly:
pypa/setuptools-scm#432
  • Loading branch information
JenSte committed Aug 9, 2020
1 parent 07c5f6f commit 3491a9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
python-version: [3.7, 3.8]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.2
- uses: actions/checkout@v1.2.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2.1.1
with:
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
needs: checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.2
- uses: actions/checkout@v1.2.0
- name: Set up Python 3.7
uses: actions/setup-python@v2.1.1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.2
- uses: actions/checkout@v1.2.0
- name: Set up Python 3.7
uses: actions/setup-python@v2.1.1
with:
Expand Down

0 comments on commit 3491a9f

Please sign in to comment.