@@ -18,10 +18,10 @@ jobs:
18
18
runs-on : ubuntu-latest
19
19
20
20
steps :
21
- - uses : actions/checkout@v2
21
+ - uses : actions/checkout@v4
22
22
23
23
- name : Set up Python 3.9
24
- uses : actions/setup-python@v2
24
+ uses : actions/setup-python@v5
25
25
with :
26
26
python-version : 3.9
27
27
60
60
- { os: macos-latest, arch: universal2 }
61
61
62
62
steps :
63
- - uses : actions/checkout@v2
63
+ - uses : actions/checkout@v4
64
64
with :
65
65
fetch-depth : ' 0'
66
66
71
71
with :
72
72
output-dir : dist
73
73
74
- - uses : actions/upload-artifact@v2
74
+ - uses : actions/upload-artifact@v4
75
75
with :
76
76
path : ./dist/*.whl
77
77
@@ -85,12 +85,12 @@ jobs:
85
85
python-version : [3.9]
86
86
87
87
steps :
88
- - uses : actions/checkout@v2
88
+ - uses : actions/checkout@v4
89
89
with :
90
90
fetch-depth : ' 0'
91
91
92
92
- name : Set up Python ${{ matrix.python-version }}
93
- uses : actions/setup-python@v2
93
+ uses : actions/setup-python@v5
94
94
with :
95
95
python-version : ${{ matrix.python-version }}
96
96
@@ -112,7 +112,7 @@ jobs:
112
112
# PEP 517 package builder from pypa
113
113
python -m build --sdist --outdir dist .
114
114
115
- - uses : actions/upload-artifact@v2
115
+ - uses : actions/upload-artifact@v4
116
116
# if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
117
117
with :
118
118
path : dist/*.tar.gz
@@ -122,7 +122,7 @@ jobs:
122
122
runs-on : ubuntu-latest
123
123
124
124
steps :
125
- - uses : actions/download-artifact@v2
125
+ - uses : actions/download-artifact@v4
126
126
with :
127
127
name : artifact
128
128
path : dist
0 commit comments