Skip to content

Commit

Permalink
chore: bump versions node 22.11.0 to 22.13.0 and actions (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgollucci authored Feb 17, 2025
1 parent b9ea675 commit c8a5592
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand All @@ -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') }}

0 comments on commit c8a5592

Please sign in to comment.