Skip to content

Commit

Permalink
CI: Update GHA action recipes to their most recent stable versions
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed May 26, 2022
1 parent 8432982 commit eae2f08
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Expand Up @@ -8,15 +8,15 @@ jobs:

steps:
- name: Acquire sources
uses: actions/checkout@v2
uses: actions/checkout@v3

# Fixup for `setuptools_scm`
# https://github.com/pypa/setuptools_scm/issues/480
with:
fetch-depth: 0

- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: 3.9

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: tags
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -20,9 +20,9 @@ jobs:
os: [ubuntu-latest]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy3']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -38,7 +38,7 @@ jobs:
# https://github.com/codecov/codecov-action
- name: Upload coverage results to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false
continue-on-error: true

0 comments on commit eae2f08

Please sign in to comment.