Skip to content

Commit 2c3571f

Browse files
committed
Bump GHA actions to latest version
Signed-off-by: Jordan Borean <[email protected]>
1 parent e4d4d08 commit 2c3571f

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/ci.yml

+19-19
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Check out code
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515

1616
- name: Select python
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v4
1818
with:
1919
python-version: 3.9
2020

@@ -28,7 +28,7 @@ jobs:
2828
GSSAPI_COMPILER_ARGS: ''
2929

3030
- name: Upload sdist
31-
uses: actions/upload-artifact@v2
31+
uses: actions/upload-artifact@v3
3232
with:
3333
name: artifact
3434
path: ./dist/*.tar.gz
@@ -99,7 +99,7 @@ jobs:
9999
echo "C:\Program Files${{ endsWith(matrix.version, '-win32') && ' (x86)' || '' }}\MIT\Kerberos\bin;$PATH" >> $GITHUB_PATH
100100
101101
- name: Download gssapi sdist
102-
uses: actions/download-artifact@v2
102+
uses: actions/download-artifact@v3
103103
with:
104104
name: artifact
105105
path: ./
@@ -121,7 +121,7 @@ jobs:
121121
CIBW_BUILD_VERBOSITY: 1
122122

123123
- name: Upload wheel
124-
uses: actions/upload-artifact@v2
124+
uses: actions/upload-artifact@v3
125125
with:
126126
path: ./wheelhouse/*.whl
127127
name: artifact
@@ -154,10 +154,10 @@ jobs:
154154

155155
steps:
156156
- name: Check out code
157-
uses: actions/checkout@v2
157+
uses: actions/checkout@v3
158158

159159
- name: Download built project
160-
uses: actions/download-artifact@v2
160+
uses: actions/download-artifact@v3
161161
with:
162162
name: artifact
163163
path: ./dist
@@ -201,16 +201,16 @@ jobs:
201201

202202
steps:
203203
- name: Check out code
204-
uses: actions/checkout@v2
204+
uses: actions/checkout@v3
205205

206206
- name: Download built project
207-
uses: actions/download-artifact@v2
207+
uses: actions/download-artifact@v3
208208
with:
209209
name: artifact
210210
path: ./dist
211211

212212
- name: Install the right python
213-
uses: actions/setup-python@v2
213+
uses: actions/setup-python@v4
214214
with:
215215
python-version: ${{ matrix.pyenv }}
216216
architecture: ${{ matrix.arch }}
@@ -229,10 +229,10 @@ jobs:
229229
runs-on: macos-latest
230230
steps:
231231
- name: Check out code
232-
uses: actions/checkout@v2
232+
uses: actions/checkout@v3
233233

234234
- name: Download built project
235-
uses: actions/download-artifact@v2
235+
uses: actions/download-artifact@v3
236236
with:
237237
name: artifact
238238
path: ./dist
@@ -253,10 +253,10 @@ jobs:
253253
runs-on: ubuntu-latest
254254
steps:
255255
- name: Check out code
256-
uses: actions/checkout@v2
256+
uses: actions/checkout@v3
257257

258258
- name: Download built project
259-
uses: actions/download-artifact@v2
259+
uses: actions/download-artifact@v3
260260
with:
261261
name: artifact
262262
path: ./dist
@@ -268,21 +268,21 @@ jobs:
268268

269269
- name: Get tarball path
270270
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
272272

273273
- name: Get release checksum path
274274
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
276276

277277
- name: Upload tagged build artifact
278-
uses: actions/upload-artifact@v2
278+
uses: actions/upload-artifact@v3
279279
with:
280280
path: tag_build/${{ steps.tarball.outputs.tarball }}
281281
name: artifact
282282

283283
- name: Deploy stable docs
284284
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
286286
with:
287287
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
288288
BRANCH: gh-pages
@@ -323,7 +323,7 @@ jobs:
323323

324324
- name: Deploy to PyPI
325325
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
327327
with:
328328
user: __token__
329329
password: ${{ secrets.pypi_password }}

0 commit comments

Comments
 (0)