Skip to content

Commit 779258c

Browse files
authored
[ci] update versions of GitHub Actions (#203)
1 parent 3759922 commit 779258c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build-and-publish-wheels.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v4
2222
- name: Build wheels
2323
run: pipx run build --wheel
24-
- uses: actions/upload-artifact@v3
24+
- uses: actions/upload-artifact@v4
2525
with:
2626
path: dist/*.whl
2727

@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v4
3333
- name: Build sdist
3434
run: pipx run build --sdist
35-
- uses: actions/upload-artifact@v3
35+
- uses: actions/upload-artifact@v4
3636
with:
3737
path: dist/*.tar.gz
3838

@@ -42,11 +42,11 @@ jobs:
4242
# publish whenever a GitHub release is published
4343
if: github.event_name == 'release' && github.event.action == 'published'
4444
steps:
45-
- uses: actions/download-artifact@v3
45+
- uses: actions/download-artifact@v4
4646
with:
4747
name: artifact
4848
path: dist
49-
- uses: pypa/[email protected].10
49+
- uses: pypa/[email protected].11
5050
with:
5151
user: __token__
5252
password: ${{ secrets.PYPI_API_KEY }}
@@ -57,7 +57,7 @@ jobs:
5757
# publish whenever a GitHub release is published
5858
if: github.event_name == 'release' && github.event.action == 'published'
5959
steps:
60-
- uses: actions/download-artifact@v3
60+
- uses: actions/download-artifact@v4
6161
with:
6262
name: artifact
6363
path: dist

.github/workflows/unit-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
uses: actions/checkout@v4
101101
with:
102102
fetch-depth: 1
103-
- uses: actions/setup-python@v4
103+
- uses: actions/setup-python@v5
104104
with:
105105
python-version: 'pypy${{ matrix.python_version}}'
106106
- name: Install extra tools on Linux
@@ -139,7 +139,7 @@ jobs:
139139
uses: actions/checkout@v4
140140
with:
141141
fetch-depth: 1
142-
- uses: actions/setup-python@v4
142+
- uses: actions/setup-python@v5
143143
with:
144144
python-version: "${{ matrix.python_version}}"
145145
- name: run tests

0 commit comments

Comments
 (0)