From 76a4fdab79392947adbf1f51d35c12114ffca5e5 Mon Sep 17 00:00:00 2001 From: Nicolas Brichet Date: Mon, 6 Mar 2023 13:14:33 +0100 Subject: [PATCH] Update actions and node version in tests --- .github/workflows/check-release.yml | 2 +- .github/workflows/test-docs-python.yml | 6 +++--- .github/workflows/test-extensions.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/check-release.yml b/.github/workflows/check-release.yml index 5d903bcd3..ebd0a129a 100644 --- a/.github/workflows/check-release.yml +++ b/.github/workflows/check-release.yml @@ -14,7 +14,7 @@ jobs: group: [check_release, link_check] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Base Setup uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 - name: Install Dependencies diff --git a/.github/workflows/test-docs-python.yml b/.github/workflows/test-docs-python.yml index 968dec9ab..2638d6886 100644 --- a/.github/workflows/test-docs-python.yml +++ b/.github/workflows/test-docs-python.yml @@ -54,11 +54,11 @@ jobs: echo "GROUP=python" >> $GITHUB_ENV echo "TIMEOUT_MINUTES=20" >> $GITHUB_ENV fi - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: '17.x' + node-version: '18.x' # NOTE: actions/setup-python@v2 can make use of a cache within the GitHub # Action virtual environment and setup extremely fast. 3.9 isn't # available in this cache as of November 2020. diff --git a/.github/workflows/test-extensions.yml b/.github/workflows/test-extensions.yml index 385b6e0ab..7c1450d07 100644 --- a/.github/workflows/test-extensions.yml +++ b/.github/workflows/test-extensions.yml @@ -38,11 +38,11 @@ jobs: - name: Configure environment variables from job flags run: | echo "GROUP=${{ matrix.group }}" >> $GITHUB_ENV - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: '17.x' + node-version: '18.x' # NOTE: actions/setup-python@v2 can make use of a cache within the GitHub # Action virtual environment and setup extremely fast. 3.9 isn't # available in this cache as of November 2020.