|
47 | 47 | lab: ['>=3.3.0,<4.0.0a0']
|
48 | 48 | r: ['>=4']
|
49 | 49 | steps:
|
50 |
| - - uses: actions/checkout@v2 |
| 50 | + - uses: actions/checkout@v3 |
51 | 51 |
|
52 | 52 | - uses: cschleiden/replace-tokens@v1
|
53 | 53 | with:
|
@@ -158,7 +158,6 @@ jobs:
|
158 | 158 | miniforge-variant: Mambaforge
|
159 | 159 |
|
160 | 160 | - name: Install minimal build deps
|
161 |
| - shell: bash -l {0} |
162 | 161 | run: mamba install -n test -c conda-forge setuptools wheel 'jupyterlab${{ matrix.lab }}' 'nodejs${{ matrix.nodejs }}'
|
163 | 162 |
|
164 | 163 | - name: Cache node_modules
|
@@ -210,7 +209,7 @@ jobs:
|
210 | 209 | sha256sum * | tee SHA256SUMS
|
211 | 210 |
|
212 | 211 | - name: Publish builds
|
213 |
| - uses: actions/upload-artifact@v2 |
| 212 | + uses: actions/upload-artifact@v3 |
214 | 213 | with:
|
215 | 214 | name: jupyterlab-lsp dist ${{ github.run_number }}
|
216 | 215 | path: ./dist
|
@@ -239,7 +238,7 @@ jobs:
|
239 | 238 | lab: '>=3.4.0,<4'
|
240 | 239 |
|
241 | 240 | steps:
|
242 |
| - - uses: actions/checkout@v2 |
| 241 | + - uses: actions/checkout@v3 |
243 | 242 |
|
244 | 243 | - name: Set JupyterLab and Node versions
|
245 | 244 | uses: cschleiden/replace-tokens@v1
|
@@ -297,7 +296,7 @@ jobs:
|
297 | 296 | key: |
|
298 | 297 | ${{ env.CACHE_EPOCH }}-julia-test-${{ runner.os }}-${{ env.JULIA_LANGSERVER }}
|
299 | 298 |
|
300 |
| - - uses: actions/download-artifact@v2 |
| 299 | + - uses: actions/download-artifact@v3 |
301 | 300 | with:
|
302 | 301 | name: jupyterlab-lsp dist ${{ github.run_number }}
|
303 | 302 | path: ./dist
|
@@ -395,11 +394,11 @@ jobs:
|
395 | 394 | py_cmd: python
|
396 | 395 | steps:
|
397 | 396 | - name: Install Python
|
398 |
| - uses: actions/setup-python@v2 |
| 397 | + uses: actions/setup-python@v4 |
399 | 398 | with:
|
400 | 399 | python-version: ${{ matrix.python }}
|
401 | 400 | architecture: 'x64'
|
402 |
| - - uses: actions/download-artifact@v2 |
| 401 | + - uses: actions/download-artifact@v3 |
403 | 402 | with:
|
404 | 403 | name: jupyterlab-lsp dist ${{ github.run_number }}
|
405 | 404 | path: ./dist
|
@@ -437,25 +436,23 @@ jobs:
|
437 | 436 | lab: '>=3.3,<4'
|
438 | 437 | steps:
|
439 | 438 | - name: Install Python
|
440 |
| - uses: actions/setup-python@v2 |
| 439 | + uses: actions/setup-python@v4 |
441 | 440 | with:
|
442 | 441 | python-version: ${{ matrix.python }}
|
443 | 442 | architecture: 'x64'
|
444 | 443 | - name: Setup Node
|
445 |
| - uses: actions/setup-node@v2 |
| 444 | + uses: actions/setup-node@v3 |
446 | 445 | with:
|
447 | 446 | node-version: ${{ matrix.nodejs }}
|
448 |
| - - uses: actions/download-artifact@v2 |
| 447 | + - uses: actions/download-artifact@v3 |
449 | 448 | with:
|
450 | 449 | name: jupyterlab-lsp dist ${{ github.run_number }}
|
451 | 450 | path: ./dist
|
452 | 451 | - name: Install the prerequisites
|
453 | 452 | run: python -m pip install --upgrade pip wheel setuptools
|
454 | 453 | - name: Install JupyterLab
|
455 |
| - shell: bash -l {0} |
456 | 454 | run: python -m pip install 'jupyterlab${{ matrix.lab }}'
|
457 | 455 | - name: Install Notebook (to test serverextension)
|
458 |
| - shell: bash -l {0} |
459 | 456 | run: python -m pip install 'notebook'
|
460 | 457 | - name: Install the server package
|
461 | 458 | run: cd dist && python -m pip install -vv jupyter_lsp*.whl
|
|
0 commit comments