From 45a52960133cafa2d3aa6f93601714ba979b7fd2 Mon Sep 17 00:00:00 2001 From: tooomm Date: Sun, 30 Apr 2023 13:51:09 +0200 Subject: [PATCH] CI: Fix versions before deprecation (#4798) * fix deprecation warning * fix deprecation warning --- .github/workflows/web-build.yml | 2 +- .github/workflows/web-lint.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/web-build.yml b/.github/workflows/web-build.yml index 56a6283b..bf1d4a87 100644 --- a/.github/workflows/web-build.yml +++ b/.github/workflows/web-build.yml @@ -36,7 +36,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{matrix.node_version}} cache: 'npm' diff --git a/.github/workflows/web-lint.yml b/.github/workflows/web-lint.yml index 30725b1d..0e8fb810 100644 --- a/.github/workflows/web-lint.yml +++ b/.github/workflows/web-lint.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: cache: 'npm' cache-dependency-path: 'webclient/package-lock.json'