@@ -11,10 +11,10 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Check out code
14
- uses : actions/checkout@v2
14
+ uses : actions/checkout@v3
15
15
16
16
- name : Select python
17
- uses : actions/setup-python@v2
17
+ uses : actions/setup-python@v4
18
18
with :
19
19
python-version : 3.9
20
20
28
28
GSSAPI_COMPILER_ARGS : ' '
29
29
30
30
- name : Upload sdist
31
- uses : actions/upload-artifact@v2
31
+ uses : actions/upload-artifact@v3
32
32
with :
33
33
name : artifact
34
34
path : ./dist/*.tar.gz
99
99
echo "C:\Program Files${{ endsWith(matrix.version, '-win32') && ' (x86)' || '' }}\MIT\Kerberos\bin;$PATH" >> $GITHUB_PATH
100
100
101
101
- name : Download gssapi sdist
102
- uses : actions/download-artifact@v2
102
+ uses : actions/download-artifact@v3
103
103
with :
104
104
name : artifact
105
105
path : ./
@@ -121,7 +121,7 @@ jobs:
121
121
CIBW_BUILD_VERBOSITY : 1
122
122
123
123
- name : Upload wheel
124
- uses : actions/upload-artifact@v2
124
+ uses : actions/upload-artifact@v3
125
125
with :
126
126
path : ./wheelhouse/*.whl
127
127
name : artifact
@@ -154,10 +154,10 @@ jobs:
154
154
155
155
steps :
156
156
- name : Check out code
157
- uses : actions/checkout@v2
157
+ uses : actions/checkout@v3
158
158
159
159
- name : Download built project
160
- uses : actions/download-artifact@v2
160
+ uses : actions/download-artifact@v3
161
161
with :
162
162
name : artifact
163
163
path : ./dist
@@ -201,16 +201,16 @@ jobs:
201
201
202
202
steps :
203
203
- name : Check out code
204
- uses : actions/checkout@v2
204
+ uses : actions/checkout@v3
205
205
206
206
- name : Download built project
207
- uses : actions/download-artifact@v2
207
+ uses : actions/download-artifact@v3
208
208
with :
209
209
name : artifact
210
210
path : ./dist
211
211
212
212
- name : Install the right python
213
- uses : actions/setup-python@v2
213
+ uses : actions/setup-python@v4
214
214
with :
215
215
python-version : ${{ matrix.pyenv }}
216
216
architecture : ${{ matrix.arch }}
@@ -229,10 +229,10 @@ jobs:
229
229
runs-on : macos-latest
230
230
steps :
231
231
- name : Check out code
232
- uses : actions/checkout@v2
232
+ uses : actions/checkout@v3
233
233
234
234
- name : Download built project
235
- uses : actions/download-artifact@v2
235
+ uses : actions/download-artifact@v3
236
236
with :
237
237
name : artifact
238
238
path : ./dist
@@ -253,10 +253,10 @@ jobs:
253
253
runs-on : ubuntu-latest
254
254
steps :
255
255
- name : Check out code
256
- uses : actions/checkout@v2
256
+ uses : actions/checkout@v3
257
257
258
258
- name : Download built project
259
- uses : actions/download-artifact@v2
259
+ uses : actions/download-artifact@v3
260
260
with :
261
261
name : artifact
262
262
path : ./dist
@@ -268,21 +268,21 @@ jobs:
268
268
269
269
- name : Get tarball path
270
270
id : tarball
271
- run : echo "::set-output name= tarball:: `ls tag_build/*.tar.gz | awk -F/ '{print $2}'`"
271
+ run : echo "tarball= `ls tag_build/*.tar.gz | awk -F/ '{print $2}'`" >> $GITHUB_OUTPUT
272
272
273
273
- name : Get release checksum path
274
274
id : checksum
275
- run : echo "::set-output name= checksum:: `ls tag_build/*.sha512sum | awk -F/ '{print $2}'`"
275
+ run : echo "checksum= `ls tag_build/*.sha512sum | awk -F/ '{print $2}'`" >> $GITHUB_OUTPUT
276
276
277
277
- name : Upload tagged build artifact
278
- uses : actions/upload-artifact@v2
278
+ uses : actions/upload-artifact@v3
279
279
with :
280
280
path : tag_build/${{ steps.tarball.outputs.tarball }}
281
281
name : artifact
282
282
283
283
- name : Deploy stable docs
284
284
if : startsWith(github.ref, 'refs/tags/v')
285
- uses : JamesIves/github-pages-deploy-action@3.7 .1
285
+ uses : JamesIves/github-pages-deploy-action@4.4 .1
286
286
with :
287
287
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
288
288
BRANCH : gh-pages
@@ -323,7 +323,7 @@ jobs:
323
323
324
324
- name : Deploy to PyPI
325
325
if : startsWith(github.ref, 'refs/tags/v')
326
- uses : pypa/gh-action-pypi-publish@v1.1.0
326
+ uses : pypa/gh-action-pypi-publish@v1.5.1
327
327
with :
328
328
user : __token__
329
329
password : ${{ secrets.pypi_password }}
0 commit comments