From 6dff90ac1f671dd0c06111e396d2af8ffb9f02ba Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Sat, 28 Oct 2023 21:02:51 +0200 Subject: [PATCH] Upgrade `setup-node` to version 4 in the GitHub Actions workflows This major version mainly involves not using Node.js 16 internally anymore, which will be end of life on September 11th. This prevents the workflows from using an unsupported version of Node.js as well as deprecation warnings getting printed in the workflow logs. For more information please refer to https://github.com/actions/setup-node/releases/tag/v4.0.0 and https://github.com/actions/setup-node/issues/850. --- .github/workflows/ci.yml | 2 +- .github/workflows/publish_website.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5944951e90743..4df97d4971e62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: fetch-depth: 0 - name: Use Node.js 18 LTS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '18' diff --git a/.github/workflows/publish_website.yml b/.github/workflows/publish_website.yml index 1d798d0f84534..3ca5609153c1b 100644 --- a/.github/workflows/publish_website.yml +++ b/.github/workflows/publish_website.yml @@ -18,7 +18,7 @@ jobs: fetch-depth: 0 - name: Use Node.js 18 LTS - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '18'