From c8a55929d2131c9f56539900ee963c45e55d571d Mon Sep 17 00:00:00 2001 From: "Philip M. Gollucci" Date: Mon, 17 Feb 2025 12:49:30 -0500 Subject: [PATCH] chore: bump versions node 22.11.0 to 22.13.0 and actions (#2) --- action.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/action.yml b/action.yml index 3f0ce10..3f5f91b 100644 --- a/action.yml +++ b/action.yml @@ -7,17 +7,17 @@ runs: - name: Install Node.js shell: bash run: | - curl -fsSL https://nodejs.org/dist/v22.11.0/node-v22.11.0-linux-x64.tar.xz -o node-v22.11.0-linux-x64.tar.xz - sudo tar -xJf node-v22.11.0-linux-x64.tar.xz -C /usr/local - rm -f node-v22.11.0-linux-x64.tar.xz - echo "/usr/local/node-v22.11.0-linux-x64/bin" >> $GITHUB_PATH + curl -fsSL https://nodejs.org/dist/v22.13.0/node-v22.13.0-linux-x64.tar.xz -o node-v22.13.0-linux-x64.tar.xz + sudo tar -xJf node-v22.13.0-linux-x64.tar.xz -C /usr/local + rm -f node-v22.13.0-linux-x64.tar.xz + echo "/usr/local/node-v22.13.0-linux-x64/bin" >> $GITHUB_PATH - name: Corepack shell: bash run: | sudo corepack enable sudo corepack prepare pnpm@latest --activate - name: Restore NPM node_modules - uses: actions/cache/restore@v4.1.2 + uses: actions/cache/restore@v4.2.0 with: path: node_modules key: ${{ runner.os }}-node_modules-${{ hashFiles('pnpm-lock.yaml') }} @@ -38,7 +38,7 @@ runs: shell: bash run: pnpm install - name: Cache NPM dependencies - uses: actions/cache@v4.1.2 + uses: actions/cache@v4.2.0 with: path: node_modules key: ${{ runner.os }}-node_modules-${{ hashFiles('pnpm-lock.yaml') }}