Skip to content

Commit

Permalink
Bump GitHub action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nth10sd committed Mar 21, 2024
1 parent 49e85f1 commit 747f17b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -32,14 +32,14 @@ jobs:
id: pip-cache
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: pip cache
uses: actions/cache@v3
uses: actions/cache@v4
if: startsWith(runner.os, 'Linux') || startsWith(runner.os, 'macOS')
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/cache@v3
- uses: actions/cache@v4
if: startsWith(runner.os, 'Windows')
with:
# 20221026 This only worked w/set-output in the pip cache dir step on Win
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
done ;
# CodeQL analysis section END
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v3.1.5
continue-on-error: true # codecov limits number of uploads allowed for each commit
with:
# token: ${{ secrets.CODECOV_TOKEN }}
Expand Down

0 comments on commit 747f17b

Please sign in to comment.