@@ -18,11 +18,11 @@ jobs:
18
18
python : [3.9, "3.10", 3.11, 3.12]
19
19
steps :
20
20
- name : Checkout
21
- uses : actions/checkout@v3
21
+ uses : actions/checkout@v4.2.2
22
22
with :
23
23
submodules : true
24
24
- name : Set up Python ${{ matrix.python }}
25
- uses : actions/setup-python@v4
25
+ uses : actions/setup-python@v5.3.0
26
26
with :
27
27
python-version : ${{ matrix.python }}
28
28
- name : Install deps
35
35
run : |
36
36
delocate-wheel -v dist/*.whl
37
37
- name : Upload Wheels
38
- uses : actions/upload-artifact@v3
38
+ uses : actions/upload-artifact@v4.4.3
39
39
with :
40
40
name : osx-wheel-${{ matrix.python }}
41
41
path : dist
48
48
wordsize : [64]
49
49
steps :
50
50
- name : Checkout
51
- uses : actions/checkout@v3
51
+ uses : actions/checkout@v4.2.2
52
52
with :
53
53
submodules : true
54
54
- name : Install deps
66
66
set -ex
67
67
${PYTHON} -m build --wheel
68
68
- name : Upload Wheels
69
- uses : actions/upload-artifact@v3
69
+ uses : actions/upload-artifact@v4.4.3
70
70
with :
71
71
name : win-wheel-${{ matrix.python }}-${{ matrix.wordsize }}
72
72
path : dist
@@ -75,12 +75,12 @@ jobs:
75
75
runs-on : ubuntu-latest
76
76
steps :
77
77
- name : Checkout
78
- uses : actions/checkout@v3
78
+ uses : actions/checkout@v4.2.2
79
79
with :
80
80
submodules : true
81
81
82
82
- name : Set up Python 3.9
83
- uses : actions/setup-python@v4
83
+ uses : actions/setup-python@v5.3.0
84
84
with :
85
85
python-version : 3.9
86
86
91
91
python -m build --sdist
92
92
93
93
- name : Upload sdist
94
- uses : actions/upload-artifact@v3
94
+ uses : actions/upload-artifact@v4.4.3
95
95
with :
96
96
name : sdist
97
97
path : dist
@@ -102,7 +102,7 @@ jobs:
102
102
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2014_x86_64 bash .github/workflows/docker/buildwheel.sh
103
103
104
104
- name : Upload Wheels
105
- uses : actions/upload-artifact@v3
105
+ uses : actions/upload-artifact@v4.4.3
106
106
with :
107
107
name : linux-wheels
108
108
path : dist/wheelhouse
@@ -115,11 +115,11 @@ jobs:
115
115
python : [3.9, "3.10", 3.11, 3.12]
116
116
steps :
117
117
- name : Download wheels
118
- uses : actions/download-artifact@v3
118
+ uses : actions/download-artifact@v4.1.8
119
119
with :
120
120
name : osx-wheel-${{ matrix.python }}
121
121
- name : Set up Python ${{ matrix.python }}
122
- uses : actions/setup-python@v4
122
+ uses : actions/setup-python@v5.3.0
123
123
with :
124
124
python-version : ${{ matrix.python }}
125
125
- name : Install wheel and test
@@ -139,11 +139,11 @@ jobs:
139
139
wordsize : [64]
140
140
steps :
141
141
- name : Download wheels
142
- uses : actions/download-artifact@v3
142
+ uses : actions/download-artifact@v4.1.8
143
143
with :
144
144
name : win-wheel-${{ matrix.python }}-${{ matrix.wordsize }}
145
145
- name : Set up Python ${{ matrix.python }}
146
- uses : actions/setup-python@v4
146
+ uses : actions/setup-python@v5.3.0
147
147
with :
148
148
python-version : ${{ matrix.python }}
149
149
- name : Install wheel and test
@@ -164,11 +164,11 @@ jobs:
164
164
python : [3.9, "3.10", 3.11, 3.12]
165
165
steps :
166
166
- name : Download wheels
167
- uses : actions/download-artifact@v3
167
+ uses : actions/download-artifact@v4.1.8
168
168
with :
169
169
name : linux-wheels
170
170
- name : Set up Python
171
- uses : actions/setup-python@v4
171
+ uses : actions/setup-python@v5.3.0
172
172
with :
173
173
python-version : ${{ matrix.python }}
174
174
- name : Install wheel and test
@@ -188,16 +188,16 @@ jobs:
188
188
id-token : write
189
189
steps :
190
190
- name : Download all
191
- uses : actions/download-artifact@v3
191
+ uses : actions/download-artifact@v4.1.8
192
192
- name : Move to dist
193
193
run : |
194
194
mkdir dist
195
195
cp */*.{whl,gz} dist/.
196
196
- name : Publish distribution to Test PyPI
197
197
if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
198
- uses : pypa/gh-action-pypi-publish@release/v1
198
+ uses : pypa/gh-action-pypi-publish@v1.12.3
199
199
with :
200
200
repository_url : https://test.pypi.org/legacy/
201
201
- name : Publish distribution to PRODUCTION PyPI
202
202
if : github.event_name == 'release'
203
- uses : pypa/gh-action-pypi-publish@release/v1
203
+ uses : pypa/gh-action-pypi-publish@v1.12.3
0 commit comments