Skip to content

Commit d7612e5

Browse files
authored
Update actions/upload-artifact
1 parent d111c15 commit d7612e5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/actions/build-dist/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ runs:
3232
sha256sum * | tee SHA256SUMS
3333
3434
- name: Upload distributions
35-
uses: actions/upload-artifact@v2
35+
uses: actions/upload-artifact@v3
3636
with:
3737
name: notebook-dist-${{ github.run_number }}
3838
path: ./dist
3939

4040
- name: Upload distributions
41-
uses: actions/upload-artifact@v2
41+
uses: actions/upload-artifact@v3
4242
with:
4343
name: notebook-pkgs-${{ github.run_number }}
4444
path: ./pkgs

.github/workflows/check-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
version_spec: next
3232

3333
- name: Upload Distributions
34-
uses: actions/upload-artifact@v2
34+
uses: actions/upload-artifact@v3
3535
with:
3636
name: notebook-jupyter-releaser-dist-${{ github.run_number }}
3737
path: .jupyter_releaser_checkout/dist

.github/workflows/ui-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ jobs:
7070
7171
- name: Upload Playwright Test assets
7272
if: always()
73-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v3
7474
with:
7575
name: notebook-${{ matrix.browser }}-test-assets
7676
path: |
7777
ui-tests/test-results
7878
7979
- name: Upload Playwright Test report
8080
if: always()
81-
uses: actions/upload-artifact@v2
81+
uses: actions/upload-artifact@v3
8282
with:
8383
name: notebook-${{ matrix.browser }}-test-report
8484
path: |
@@ -95,7 +95,7 @@ jobs:
9595
9696
- name: Upload updated snapshots
9797
if: failure()
98-
uses: actions/upload-artifact@v2
98+
uses: actions/upload-artifact@v3
9999
with:
100100
name: notebook-${{ matrix.browser }}-updated-snapshots
101101
path: ui-tests/test

0 commit comments

Comments
 (0)