50
50
which ccache
51
51
52
52
- name : Cache conda
53
- uses : actions/cache@v2
53
+ uses : actions/cache@v4
54
54
with :
55
55
path : ~/conda_pkgs_dir
56
56
key :
71
71
72
72
- name : Cache Conda env
73
73
id : conda-cache
74
- uses : actions/cache@v2
74
+ uses : actions/cache@v4
75
75
with :
76
76
path : ${{ env.CONDA }}/envs
77
77
key :
@@ -115,7 +115,7 @@ jobs:
115
115
echo EMSCRIPTEN_VERSION=$(pyodide config get emscripten_version) >> $GITHUB_ENV
116
116
117
117
- name : Cache emsdk
118
- uses : actions/cache@v2
118
+ uses : actions/cache@v4
119
119
with :
120
120
path : ${{env.EMSDK_CACHE_FOLDER}}
121
121
key : ${{env.EMSDK_CACHE_NUMBER}}-${{env.EMSCRIPTEN_VERSION}}-${{ runner.os }}
@@ -135,7 +135,7 @@ jobs:
135
135
fi
136
136
137
137
- name : Cache ccache
138
- uses : actions/cache@v2
138
+ uses : actions/cache@v4
139
139
with :
140
140
path : ${{ env.CCACHE_DIR }}
141
141
key : ${{ env.CCACHE_DIR }}-${{ env.CCACHE_CACHE_NUMBER }}-${{ env.EMSCRIPTEN_VERSION }}-${{ runner.os }}${{ env.CCACHE_SUFFIX }}
@@ -180,7 +180,7 @@ jobs:
180
180
ccache -s
181
181
182
182
- name : Store artifacts build
183
- uses : actions/upload-artifact@v2
183
+ uses : actions/upload-artifact@v4
184
184
with :
185
185
name : repodata
186
186
path : ./repodata/
@@ -211,14 +211,14 @@ jobs:
211
211
matrix :
212
212
os : [ubuntu-latest]
213
213
test-config : [
214
- {runner: selenium, runtime: chrome, runtime-version: latest },
214
+ {runner: selenium, runtime: chrome, runtime-version: 126 },
215
215
]
216
216
217
217
steps :
218
218
- uses : actions/checkout@v3
219
219
220
220
- name : Cache conda
221
- uses : actions/cache@v2
221
+ uses : actions/cache@v4
222
222
with :
223
223
path : ~/conda_pkgs_dir
224
224
key :
@@ -239,7 +239,7 @@ jobs:
239
239
240
240
- name : Cache Conda env
241
241
id : conda-cache
242
- uses : actions/cache@v2
242
+ uses : actions/cache@v4
243
243
with :
244
244
path : ${{ env.CONDA }}/envs
245
245
key :
@@ -256,14 +256,14 @@ jobs:
256
256
tar -xvf pyodide-core.tar.bz2
257
257
mv pyodide dist
258
258
259
- - uses : pyodide/pyodide-actions/install-browser@v1
259
+ - uses : pyodide/pyodide-actions/install-browser@v2
260
260
with :
261
261
runner : ${{ matrix.test-config.runner }}
262
262
browser : ${{ matrix.test-config.runtime }}
263
263
browser-version : ${{ matrix.test-config.runtime-version }}
264
264
265
265
- name : Download build artifact
266
- uses : actions/download-artifact@v2
266
+ uses : actions/download-artifact@v4
267
267
with :
268
268
name : repodata
269
269
path : ./repodata/
@@ -307,7 +307,7 @@ jobs:
307
307
use-mamba : true
308
308
309
309
- name : Download build artifact
310
- uses : actions/download-artifact@v2
310
+ uses : actions/download-artifact@v4
311
311
with :
312
312
name : repodata
313
313
path : ./repodata/
0 commit comments