From ded50b732dad7d78abc0ee649e56ab77326a88f6 Mon Sep 17 00:00:00 2001 From: Fabio Huser Date: Mon, 18 Dec 2023 11:38:30 +0100 Subject: [PATCH] chore(test_and_deploy): update actions and node * chore(test_and_deploy): bump `actions/checkout` to v4 * chore(test_and_deploy): set Node.js version to `lts/iron` See https://github.com/actions/setup-node. --- .github/workflows/test_and_deploy.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index b65aba239..2c17cb77a 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -7,9 +7,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 + + - name: Set Node Version + uses: actions/setup-node@v4 with: - node-version: 12.x + node-version: lts/iron - name: Install uses: bahmutov/npm-install@v1