Skip to content

Commit

Permalink
Bump actions' versions (#19)
Browse files Browse the repository at this point in the history
Update to the latest versions of `actions/checkout` and
`codecov/codecov-action`. The older actions were emitting warning
messages due to reliance on a deprecated version of node.

It's possible to teach dependabot to automatically keep these versions
updated for you[^1]. Will look into implementing this in a subsequent
PR.

[^1]: https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
  • Loading branch information
gmgunter committed Aug 21, 2023
1 parent cd36d81 commit 66c1d1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup environment
uses: mamba-org/setup-micromamba@v1
with:
Expand All @@ -52,4 +52,4 @@ jobs:
micromamba install -f test/requirements.txt -c conda-forge
pytest --cov-report=xml
- name: Coverage report
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3

0 comments on commit 66c1d1f

Please sign in to comment.