From 23e54892d5758dd4ac2e13c3ec461e6f31eacbda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Fri, 1 Mar 2024 23:57:41 +0100 Subject: [PATCH] Update setup-node action to version 4 We were getting a warning with version 3: Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/setup-node@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5a171997d..4a351449d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,7 +40,7 @@ jobs: with: bundler-cache: true - name: Setup NPM - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: cache: "npm" node-version-file: ".node-version"