Skip to content

Commit

Permalink
Update actions to use Node.js 16 (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
alefduarte authored Nov 25, 2023
1 parent aca85a8 commit b56ca31
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: lts/*

- name: Cache pnpm modules
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v2.1.0
- uses: pnpm/action-setup@v2
with:
run_install: true
version: latest
Expand Down

0 comments on commit b56ca31

Please sign in to comment.