Skip to content

Commit 76a4fda

Browse files
committed
Update actions and node version in tests
1 parent 9f7708b commit 76a4fda

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/check-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
group: [check_release, link_check]
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
- name: Install Dependencies

.github/workflows/test-docs-python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ jobs:
5454
echo "GROUP=python" >> $GITHUB_ENV
5555
echo "TIMEOUT_MINUTES=20" >> $GITHUB_ENV
5656
fi
57-
- uses: actions/checkout@v2
57+
- uses: actions/checkout@v3
5858
- name: Install node
59-
uses: actions/setup-node@v1
59+
uses: actions/setup-node@v3
6060
with:
61-
node-version: '17.x'
61+
node-version: '18.x'
6262
# NOTE: actions/setup-python@v2 can make use of a cache within the GitHub
6363
# Action virtual environment and setup extremely fast. 3.9 isn't
6464
# available in this cache as of November 2020.

.github/workflows/test-extensions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838
- name: Configure environment variables from job flags
3939
run: |
4040
echo "GROUP=${{ matrix.group }}" >> $GITHUB_ENV
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v3
4242
- name: Install node
43-
uses: actions/setup-node@v1
43+
uses: actions/setup-node@v3
4444
with:
45-
node-version: '17.x'
45+
node-version: '18.x'
4646
# NOTE: actions/setup-python@v2 can make use of a cache within the GitHub
4747
# Action virtual environment and setup extremely fast. 3.9 isn't
4848
# available in this cache as of November 2020.

0 commit comments

Comments
 (0)