From eb4ef6afbeab9145d4e8e6deeb940c7d4c3cd419 Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Fri, 22 Nov 2024 12:52:14 -0800 Subject: [PATCH] fix: usage of `a deprecated Node.js version` in CI --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 221c4cbe7..b3cbc5c17 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,9 +15,9 @@ jobs: environment: production steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: "16" @@ -34,7 +34,7 @@ jobs: # run_install: true - name: Cache pnpm modules - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-pnpm-modules with: