6464 if : github.repository == 'labscript-suite/labscript' && (github.event_name != 'create' || github.event.ref_type != 'branch')
6565 steps :
6666 - name : Checkout
67- uses : actions/checkout@v3
67+ uses : actions/checkout@v4
6868 with :
6969 fetch-depth : 0
7070
7373 run : git tag -d $(git tag --points-at HEAD)
7474
7575 - name : Install Python
76- uses : actions/setup-python@v4
76+ uses : actions/setup-python@v5
7777 with :
7878 python-version : ${{ matrix.python }}
7979 architecture : ${{ matrix.arch }}
9393
9494 - name : Upload Artifact
9595 if : strategy.job-index == 0 || (env.PURE == 'false' && runner.os != 'Linux')
96- uses : actions/upload-artifact@v3
96+ uses : actions/upload-artifact@v4
9797 with :
9898 name : dist
9999 path : ./dist
@@ -111,7 +111,7 @@ jobs:
111111
112112 - name : Install Miniconda
113113 if : matrix.conda
114- uses : conda-incubator/setup-miniconda@v2
114+ uses : conda-incubator/setup-miniconda@v3
115115 with :
116116 auto-update-conda : true
117117 python-version : ${{ matrix.python }}
@@ -140,7 +140,7 @@ jobs:
140140
141141 - name : Upload Artifact
142142 if : matrix.conda
143- uses : actions/upload-artifact@v3
143+ uses : actions/upload-artifact@v4
144144 with :
145145 name : conda_packages
146146 path : ./conda_packages
@@ -153,7 +153,7 @@ jobs:
153153 steps :
154154 - name : Checkout
155155 if : env.PURE == 'false'
156- uses : actions/checkout@v3
156+ uses : actions/checkout@v4
157157 with :
158158 fetch-depth : 0
159159
@@ -170,7 +170,7 @@ jobs:
170170
171171 - name : Upload Artifact
172172 if : env.PURE == 'false'
173- uses : actions/upload-artifact@v3
173+ uses : actions/upload-artifact@v4
174174 with :
175175 name : dist
176176 path : dist/*manylinux*.whl
@@ -182,13 +182,13 @@ jobs:
182182 steps :
183183
184184 - name : Download Artifact
185- uses : actions/download-artifact@v3
185+ uses : actions/download-artifact@v4
186186 with :
187187 name : dist
188188 path : ./dist
189189
190190 - name : Download Artifact
191- uses : actions/download-artifact@v3
191+ uses : actions/download-artifact@v4
192192 with :
193193 name : conda_packages
194194 path : ./conda_packages
@@ -226,7 +226,7 @@ jobs:
226226 password : ${{ secrets.pypi }}
227227
228228 - name : Install Miniconda
229- uses : conda-incubator/setup-miniconda@v2
229+ uses : conda-incubator/setup-miniconda@v3
230230 with :
231231 auto-update-conda : true
232232
0 commit comments