Skip to content

Commit 1822f98

Browse files
authored
Merge pull request #6585 from jtpio/update-actions
Update `actions/checkout` and `actions/download-artifact`
2 parents 71897fc + d7612e5 commit 1822f98

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

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

+2-2
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/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v3
2929

3030
- name: Build
3131
uses: ./.github/actions/build-dist
@@ -35,7 +35,7 @@ jobs:
3535
timeout-minutes: 10
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v3
3939

4040
- name: Base Setup
4141
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
@@ -84,7 +84,7 @@ jobs:
8484
with:
8585
python-version: ${{ matrix.python }}
8686
architecture: 'x64'
87-
- uses: actions/download-artifact@v2
87+
- uses: actions/download-artifact@v3
8888
with:
8989
name: notebook-dist-${{ github.run_number }}
9090
path: ./dist
@@ -112,7 +112,7 @@ jobs:
112112
runs-on: ubuntu-latest
113113
timeout-minutes: 10
114114
steps:
115-
- uses: actions/checkout@v2
115+
- uses: actions/checkout@v3
116116
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
117117
- uses: jupyterlab/maintainer-tools/.github/actions/check-links@v1
118118
with:
@@ -122,7 +122,7 @@ jobs:
122122
runs-on: ubuntu-latest
123123
timeout-minutes: 10
124124
steps:
125-
- uses: actions/checkout@v2
125+
- uses: actions/checkout@v3
126126
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
127127
- run: pip install -e .
128128
- uses: jupyterlab/maintainer-tools/.github/actions/pre-commit@v1

.github/workflows/buildutils.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
timeout-minutes: 10
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323

2424
- name: Base Setup
2525
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: ubuntu-latest
6767
steps:
6868
- name: Checkout
69-
uses: actions/checkout@v2
69+
uses: actions/checkout@v3
7070

7171
- name: Install Python
7272
uses: actions/setup-python@v4

.github/workflows/check-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
timeout-minutes: 30
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222
- name: Base Setup
2323
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
2424
- name: Install Dependencies
@@ -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/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
timeout-minutes: 10
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
- name: Base Setup
1919
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
2020
with:

.github/workflows/ui-tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020

2121
- name: Build
2222
uses: ./.github/actions/build-dist
@@ -31,12 +31,12 @@ jobs:
3131
browser: [firefox, chromium]
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v2
34+
uses: actions/checkout@v3
3535

3636
- name: Base Setup
3737
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
3838

39-
- uses: actions/download-artifact@v2
39+
- uses: actions/download-artifact@v3
4040
with:
4141
name: notebook-dist-${{ github.run_number }}
4242
path: ./dist
@@ -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)