Skip to content

Commit

Permalink
chore: Updates action versions
Browse files Browse the repository at this point in the history
`lib-tests` were showing warnings about outdated Node.js actions...

```
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2, actions/setup-python@v2, codecov/codecov-action@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
```

This PR updates the following steps.

+ `actions/checkout@v2` > `actions/checkout@v4`
+ `actions/setup-python@v2` > `actions/setup-python@v5`
+ `codecov/codecov-action@v2` > `codecov/codecov-action@v4`
  • Loading branch information
slackline committed Mar 18, 2024
1 parent 329b88d commit 2ad2658
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lib-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
run:
working-directory: ./lib
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -33,7 +33,7 @@ jobs:
run: |
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
- name: Checking CLI entry-point works
run: |
pip install -e .
Expand Down

0 comments on commit 2ad2658

Please sign in to comment.