@@ -19,14 +19,12 @@ jobs:
1919 steps :
2020
2121 - name : Checkout
22- uses : actions/checkout@v2
22+ uses : actions/checkout@v4
2323
24- - name : Install Conda environment with Micromamba
25- uses : mamba-org/provision-with -micromamba@main
24+ - name : Setup conda
25+ uses : mamba-org/setup -micromamba@main
2626 with :
27- environment-name : bqplot-gl-test
2827 environment-file : test-environment.yml
29- channels : conda-forge
3028
3129 - name : Install bqplot
3230 run : pip install --pre bqplot
4341 test -f $CONDA_PREFIX/share/jupyter/labextensions/bqplot-gl/package.json
4442 test -d $CONDA_PREFIX/share/jupyter/labextensions/bqplot-gl/static
4543
46- - name : Validate the nbextension
47- run : jupyter nbextension list 2>&1 | grep "bqplot-gl/extension"
48-
4944 - name : Validate the labextension
5045 run : jupyter labextension list 2>&1 | grep bqplot-gl
5146
5954 run : python -m build
6055
6156 - name : Upload builds
62- uses : actions/upload-artifact@v2
57+ uses : actions/upload-artifact@v5
6358 with :
6459 name : dist ${{ github.run_number }}
6560 path : ./dist
@@ -74,16 +69,14 @@ jobs:
7469 steps :
7570
7671 - name : Checkout
77- uses : actions/checkout@v2
72+ uses : actions/checkout@v4
7873
79- - name : Install Conda environment with Micromamba
80- uses : mamba-org/provision-with -micromamba@main
74+ - name : Setup conda
75+ uses : mamba-org/setup -micromamba@main
8176 with :
82- environment-name : bqplot-gl-test
8377 environment-file : test-environment.yml
84- channels : conda-forge
8578
86- - uses : actions/download-artifact@v2
79+ - uses : actions/download-artifact@v4
8780 with :
8881 name : dist ${{ github.run_number }}
8982 path : ./dist
@@ -119,7 +112,7 @@ jobs:
119112
120113 - name : Upload Playwright Test report
121114 if : always()
122- uses : actions/upload-artifact@v3
115+ uses : actions/upload-artifact@v5
123116 with :
124117 name : bqplot-playwright-tests
125118 path : |
0 commit comments