Skip to content

Commit f773707

Browse files
committed
Update github action setup-python, checkout, upload-artifact
1 parent 5674dce commit f773707

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/wheels.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
name: Build source package
1111
runs-on: [ ubuntu-latest ]
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

15-
- uses: actions/setup-python@v4
15+
- uses: actions/setup-python@v5
1616
name: Install Python
1717
with:
1818
python-version: '3.x'
@@ -22,7 +22,7 @@ jobs:
2222
python -m pip install setuptools
2323
python setup.py sdist
2424
25-
- uses: actions/upload-artifact@v3
25+
- uses: actions/upload-artifact@v4
2626
with:
2727
name: source
2828
path: ./dist/*.tar.gz
@@ -37,7 +37,7 @@ jobs:
3737
if: github.actor == 'Legrandin'
3838

3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141

4242
- name: Select architecture for MacOS
4343
run: |
@@ -70,7 +70,7 @@ jobs:
7070
run: |
7171
rm -f wheelhouse/*-manylinux1_*.whl
7272
73-
- uses: actions/upload-artifact@v3
73+
- uses: actions/upload-artifact@v4
7474
with:
7575
name: wheels
7676
path: ./wheelhouse/*.whl
@@ -95,7 +95,7 @@ jobs:
9595
if: github.actor == 'Legrandin'
9696

9797
steps:
98-
- uses: actions/checkout@v3
98+
- uses: actions/checkout@v4
9999

100100
- name: Install MSVC
101101
if: runner.os == 'Windows'
@@ -139,7 +139,7 @@ jobs:
139139
run: |
140140
rm -f wheelhouse/*-manylinux1_*.whl
141141
142-
- uses: actions/upload-artifact@v3
142+
- uses: actions/upload-artifact@v4
143143
with:
144144
name: wheels
145145
path: ./wheelhouse/*.whl

0 commit comments

Comments
 (0)