From 6d8fb836f357540b90963e445a6efa50b31740c3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 16:29:38 +0000 Subject: [PATCH] feat(Dependencies): Update actions/setup-node action to v4 | datasource | package | from | to | | ----------- | ------------------ | ---- | -- | | github-tags | actions/setup-node | v3 | v4 | --- .github/workflows/LintingAutoFix.yml | 2 +- .github/workflows/playwright.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/LintingAutoFix.yml b/.github/workflows/LintingAutoFix.yml index 6cf0a999b3..bba5720fe8 100644 --- a/.github/workflows/LintingAutoFix.yml +++ b/.github/workflows/LintingAutoFix.yml @@ -30,7 +30,7 @@ jobs: id: tag - name: Get tag run: echo "The selected tag is ${{ steps.tag.outputs.TAG }}" - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: '16.14.0' - run: git status diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index cde12e91ae..29413798c9 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: '14.x' - name: Install dependencies