From e4ec30970765d24d63c476ec44b644973d209d96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Harper?= Date: Tue, 24 Oct 2023 10:09:18 -0400 Subject: [PATCH] ci: using a TLS Node.js version to prevent setup-node issues See actions/setup-node#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/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f450210a..fd7d7433 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,9 +26,9 @@ jobs: ls versioned_sidebars/version-${{ github.event.inputs.version }}-sidebars.json && echo "::error::Version already exist" && exit 1 || exit 0 - name: Setup Node.js - uses: actions/setup-node@v3.7.0 + uses: actions/setup-node@v4.0.0 with: - node-version: v19.6.0 + node-version: v18.18.0 cache: npm - name: Cache Node.js packages