From 2d16fc7670e361c039570458f981a8dd3ef70e89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Harper?= Date: Tue, 10 Oct 2023 14:08:40 -0400 Subject: [PATCH] ci: using a TLS Node.js version to prevent setup-node issues See https://github.com/actions/setup-node/issues/838 for more information on the problem with v19.6.0 & non-LTS versions. I also updated to the latest version the actions/checkout, actions/setup-node & actions/cache GitHub Actions. --- .github/workflows/check-build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-build.yml b/.github/workflows/check-build.yml index e4019c46..1bbf41ec 100644 --- a/.github/workflows/check-build.yml +++ b/.github/workflows/check-build.yml @@ -8,17 +8,17 @@ jobs: steps: - name: Checkout the code - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.1.0 - name: Setup Node.js - uses: actions/setup-node@v3.7.0 + uses: actions/setup-node@v3.8.1 with: - node-version: v19.6.0 + node-version: v18.18.0 cache: npm - name: Cache Node.js packages id: cache-npm - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 env: cache-name: cache-node-modules with: