64
64
if : github.repository == 'labscript-suite/labscript' && (github.event_name != 'create' || github.event.ref_type != 'branch')
65
65
steps :
66
66
- name : Checkout
67
- uses : actions/checkout@v3
67
+ uses : actions/checkout@v4
68
68
with :
69
69
fetch-depth : 0
70
70
73
73
run : git tag -d $(git tag --points-at HEAD)
74
74
75
75
- name : Install Python
76
- uses : actions/setup-python@v4
76
+ uses : actions/setup-python@v5
77
77
with :
78
78
python-version : ${{ matrix.python }}
79
79
architecture : ${{ matrix.arch }}
93
93
94
94
- name : Upload Artifact
95
95
if : strategy.job-index == 0 || (env.PURE == 'false' && runner.os != 'Linux')
96
- uses : actions/upload-artifact@v3
96
+ uses : actions/upload-artifact@v4
97
97
with :
98
98
name : dist
99
99
path : ./dist
@@ -111,7 +111,7 @@ jobs:
111
111
112
112
- name : Install Miniconda
113
113
if : matrix.conda
114
- uses : conda-incubator/setup-miniconda@v2
114
+ uses : conda-incubator/setup-miniconda@v3
115
115
with :
116
116
auto-update-conda : true
117
117
python-version : ${{ matrix.python }}
@@ -140,7 +140,7 @@ jobs:
140
140
141
141
- name : Upload Artifact
142
142
if : matrix.conda
143
- uses : actions/upload-artifact@v3
143
+ uses : actions/upload-artifact@v4
144
144
with :
145
145
name : conda_packages
146
146
path : ./conda_packages
@@ -153,7 +153,7 @@ jobs:
153
153
steps :
154
154
- name : Checkout
155
155
if : env.PURE == 'false'
156
- uses : actions/checkout@v3
156
+ uses : actions/checkout@v4
157
157
with :
158
158
fetch-depth : 0
159
159
@@ -170,7 +170,7 @@ jobs:
170
170
171
171
- name : Upload Artifact
172
172
if : env.PURE == 'false'
173
- uses : actions/upload-artifact@v3
173
+ uses : actions/upload-artifact@v4
174
174
with :
175
175
name : dist
176
176
path : dist/*manylinux*.whl
@@ -182,13 +182,13 @@ jobs:
182
182
steps :
183
183
184
184
- name : Download Artifact
185
- uses : actions/download-artifact@v3
185
+ uses : actions/download-artifact@v4
186
186
with :
187
187
name : dist
188
188
path : ./dist
189
189
190
190
- name : Download Artifact
191
- uses : actions/download-artifact@v3
191
+ uses : actions/download-artifact@v4
192
192
with :
193
193
name : conda_packages
194
194
path : ./conda_packages
@@ -226,7 +226,7 @@ jobs:
226
226
password : ${{ secrets.pypi }}
227
227
228
228
- name : Install Miniconda
229
- uses : conda-incubator/setup-miniconda@v2
229
+ uses : conda-incubator/setup-miniconda@v3
230
230
with :
231
231
auto-update-conda : true
232
232
0 commit comments