Skip to content

Commit

Permalink
Merge pull request #10 from fundakol/update-deprecated-code-in-ci
Browse files Browse the repository at this point in the history
Update deprecated code in CI
  • Loading branch information
fundakol committed Oct 14, 2022
2 parents f69005e + c974db9 commit 4164777
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
tox_env: "py310"
use_coverage: true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install packages
Expand All @@ -49,7 +49,7 @@ jobs:
run: python -m coverage xml
- name: Upload coverage to Codecov
if: "matrix.use_coverage"
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
files: ./coverage.xml
Expand All @@ -59,9 +59,9 @@ jobs:
runs-on: ubuntu-latest
name: flake8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install packages
Expand Down

0 comments on commit 4164777

Please sign in to comment.