From fafbf1b22c8063494929fded748f846e6d153bbd 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 Action 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 5944951e90743e..4df97d4971e625 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 1d798d0f84534f..3ca5609153c1b0 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'