From b38b27719be87960d166c1aa8f8cdeea4468d6c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Thu, 7 Mar 2024 10:16:47 +0100 Subject: [PATCH] fix: use Node.js LTS version in workflow (#803) `@node-core/utils` doesn't support Node.js 16 anymore. --- .github/workflows/reliability_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reliability_report.yml b/.github/workflows/reliability_report.yml index d85f502..3c87f1a 100644 --- a/.github/workflows/reliability_report.yml +++ b/.github/workflows/reliability_report.yml @@ -15,9 +15,9 @@ jobs: create-report: runs-on: ubuntu-latest steps: - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: - node-version: 16 + node-version: lts/* - run: npm i -g @node-core/utils - run: ncu-config --global set jenkins_token ${{ secrets.JENKINS_TOKEN }} - run: ncu-config --global set token ${{ secrets.USER_TOKEN }}