Skip to content

Commit

Permalink
Update actions to use node.js 20
Browse files Browse the repository at this point in the history
  • Loading branch information
knovichikhin committed Mar 23, 2024
1 parent 6d5a8d2 commit 8866147
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
python-version: ['3.10']
steps:
- name: Clone Repository (Latest)
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies
run: |
Expand All @@ -30,7 +30,7 @@ jobs:
python -m pytest --cov --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: ./coverage.xml
flags: ubuntu-latest, ${{ matrix.python-version }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ jobs:
'pypy3.9', 'pypy3.10']
steps:
- name: Clone Repository (Latest)
uses: actions/checkout@v3
uses: actions/checkout@v4
if: github.event.inputs.git-ref == ''

- name: Clone Repository (Custom Ref)
uses: actions/checkout@v3
uses: actions/checkout@v4
if: github.event.inputs.git-ref != ''
with:
ref: ${{ github.event.inputs.git-ref }}

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

Expand Down

0 comments on commit 8866147

Please sign in to comment.