16
16
17
17
steps :
18
18
- name : Checkout
19
- uses : actions/checkout@v2
19
+ uses : actions/checkout@v3
20
20
21
21
- name : Build
22
22
uses : ./.github/actions/build-dist
@@ -31,12 +31,12 @@ jobs:
31
31
browser : [firefox, chromium]
32
32
steps :
33
33
- name : Checkout
34
- uses : actions/checkout@v2
34
+ uses : actions/checkout@v3
35
35
36
36
- name : Base Setup
37
37
uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
38
38
39
- - uses : actions/download-artifact@v2
39
+ - uses : actions/download-artifact@v3
40
40
with :
41
41
name : notebook-dist-${{ github.run_number }}
42
42
path : ./dist
@@ -70,15 +70,15 @@ jobs:
70
70
71
71
- name : Upload Playwright Test assets
72
72
if : always()
73
- uses : actions/upload-artifact@v2
73
+ uses : actions/upload-artifact@v3
74
74
with :
75
75
name : notebook-${{ matrix.browser }}-test-assets
76
76
path : |
77
77
ui-tests/test-results
78
78
79
79
- name : Upload Playwright Test report
80
80
if : always()
81
- uses : actions/upload-artifact@v2
81
+ uses : actions/upload-artifact@v3
82
82
with :
83
83
name : notebook-${{ matrix.browser }}-test-report
84
84
path : |
95
95
96
96
- name : Upload updated snapshots
97
97
if : failure()
98
- uses : actions/upload-artifact@v2
98
+ uses : actions/upload-artifact@v3
99
99
with :
100
100
name : notebook-${{ matrix.browser }}-updated-snapshots
101
101
path : ui-tests/test
0 commit comments