|
53 | 53 | pip uninstall -y "jupyter_drives" jupyterlab |
54 | 54 |
|
55 | 55 | - name: Upload extension packages |
56 | | - uses: actions/upload-artifact@v3 |
| 56 | + uses: actions/upload-artifact@v4 |
57 | 57 | with: |
58 | | - name: extension-artifacts |
| 58 | + name: extension-artifacts-${{ matrix.runs-on }} |
59 | 59 | path: dist/jupyter_drives* |
60 | 60 | if-no-files-found: error |
61 | 61 |
|
|
69 | 69 | with: |
70 | 70 | python-version: '3.9' |
71 | 71 | architecture: 'x64' |
72 | | - - uses: actions/download-artifact@v3 |
| 72 | + - uses: actions/download-artifact@v4 |
73 | 73 | with: |
74 | | - name: extension-artifacts |
| 74 | + path: extension-artifacts |
| 75 | + pattern: extension-artifacts-* |
| 76 | + merge-multiple: true |
75 | 77 | - name: Install and Test |
76 | 78 | run: | |
77 | 79 | set -eux |
@@ -105,9 +107,11 @@ jobs: |
105 | 107 | uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 |
106 | 108 |
|
107 | 109 | - name: Download extension package |
108 | | - uses: actions/download-artifact@v3 |
| 110 | + uses: actions/download-artifact@v4 |
109 | 111 | with: |
110 | | - name: extension-artifacts |
| 112 | + path: extension-artifacts |
| 113 | + pattern: extension-artifacts-* |
| 114 | + merge-multiple: true |
111 | 115 |
|
112 | 116 | - name: Install the extension |
113 | 117 | run: | |
@@ -139,9 +143,9 @@ jobs: |
139 | 143 |
|
140 | 144 | - name: Upload Playwright Test report |
141 | 145 | if: always() |
142 | | - uses: actions/upload-artifact@v3 |
| 146 | + uses: actions/upload-artifact@v4 |
143 | 147 | with: |
144 | | - name: jupyter_drives-playwright-tests |
| 148 | + name: jupyter_drives-playwright-tests-${{ matrix.runs-on }} |
145 | 149 | path: | |
146 | 150 | ui-tests/test-results |
147 | 151 | ui-tests/playwright-report |
|
0 commit comments