Skip to content

Commit 0dcc473

Browse files
committed
Modernize actions
1 parent bde502c commit 0dcc473

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
python-version: ["3.11", "3.12", "3.13"]
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
# Need to clone everything to determine version from git.
2222
fetch-depth: 0
2323

2424
- name: Set up Python
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
cache: "pip"
@@ -57,7 +57,7 @@ jobs:
5757
pytest -r a -v --cov=python --cov=tests --cov-report=xml --cov-report=term --cov-branch \
5858
--junitxml=junit.xml -o junit_family=legacy
5959
- name: Upload coverage to codecov
60-
uses: codecov/codecov-action@v4
60+
uses: codecov/codecov-action@v5
6161
with:
6262
files: ./coverage.xml
6363
token: ${{ secrets.CODECOV_TOKEN }}
@@ -74,15 +74,15 @@ jobs:
7474
if: startsWith(github.ref, 'refs/tags/')
7575

7676
steps:
77-
- uses: actions/checkout@v4
77+
- uses: actions/checkout@v5
7878
with:
7979
# Need to clone everything to embed the version.
8080
fetch-depth: 0
8181

8282
- name: Set up Python
83-
uses: actions/setup-python@v5
83+
uses: actions/setup-python@v6
8484
with:
85-
python-version: "3.11"
85+
python-version: "3.13"
8686

8787
- name: Install dependencies
8888
run: |

.github/workflows/build_docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
build_sphinx_docs:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
# Need to clone everything for the git tags.
1616
fetch-depth: 0
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: '3.11'
2222
cache: "pip"

.github/workflows/do_not_merge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
'DO NOT MERGE'. Remove this commit from the branch before merging
2727
or change the commit summary."
2828
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030

3131
- name: Check requirements.txt for branches
3232
shell: bash

.github/workflows/docstyle.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
numpydoc:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Set up Python
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121

2222
- name: Install numpydoc
2323
run: |

0 commit comments

Comments
 (0)