Skip to content

Commit

Permalink
Updated actions versions for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
giuseppe-carboni committed Feb 19, 2024
1 parent 000420e commit cc97f24
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
python-version: ['3.9.4', '<3.12']

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 }}
check-latest: true
Expand All @@ -30,7 +30,7 @@ jobs:
coverage combine
coverage xml
- name: Upload test coverage to codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
- name: Run the Python linter
run: |
prospector
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scheduled_py3_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
python-version: ['3.9.4', '<3.12']

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 }}
check-latest: true
Expand All @@ -29,7 +29,7 @@ jobs:
coverage combine
coverage xml
- name: Upload test coverage to codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
- name: Run the Python linter
run: |
prospector
Expand Down

0 comments on commit cc97f24

Please sign in to comment.