Skip to content

Commit 3b5b050

Browse files
committed
ci: use latest actions
1 parent 4da19d5 commit 3b5b050

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
python-version: [3.8, 3.9, "3.10"]
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Setup Python # Set Python version
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies
@@ -32,7 +32,7 @@ jobs:
3232
- name: Test with pytest
3333
run: poetry run pytest tests/ --junitxml=junit/test-results-${{ matrix.python-version }}.xml
3434
- name: Upload pytest test results
35-
uses: actions/upload-artifact@v3
35+
uses: actions/upload-artifact@v4
3636
with:
3737
name: pytest-results-${{ matrix.python-version }}
3838
path: junit/test-results-${{ matrix.python-version }}.xml
@@ -53,9 +53,9 @@ jobs:
5353
matrix:
5454
python-version: ["3.10"]
5555
steps:
56-
- uses: actions/checkout@v3
56+
- uses: actions/checkout@v4
5757
- name: Setup Python # Set Python version
58-
uses: actions/setup-python@v4
58+
uses: actions/setup-python@v5
5959
- name: Install dependencies
6060
run: |
6161
python -m pip install --upgrade pip

.github/workflows/docs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
matrix:
1111
python-version: ["3.10"]
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Setup Python # Set Python version
15-
uses: actions/setup-python@v4
15+
uses: actions/setup-python@v5
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818
- name: Install dependencies
@@ -49,7 +49,7 @@ jobs:
4949
matrix:
5050
python-version: ["3.10"]
5151
steps:
52-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v4
5353
with:
5454
ref: gh-pages
5555
- name: Fix index.html

0 commit comments

Comments
 (0)