Skip to content

Commit

Permalink
Update the versions of all GitHub Actions, as the old ones are using …
Browse files Browse the repository at this point in the history
…Node 12, which is deprecated. (#312)
  • Loading branch information
rpsene authored Nov 5, 2024
1 parent 8a4483d commit 6bb00f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
python-version: ['3.9', '3.10', '3.11', '3.12','3.13']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

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

Expand All @@ -40,4 +40,4 @@ jobs:
run: coverage xml

- name: Upload coverage
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
python-version: ['3.9', '3.10', '3.11', '3.12','3.13']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

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

Expand All @@ -31,4 +31,4 @@ jobs:
run: coverage xml

- name: Upload coverage report
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4

0 comments on commit 6bb00f9

Please sign in to comment.