Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mvantellingen committed Apr 30, 2024
1 parent 15a321f commit 445ee67
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 30 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,19 @@ jobs:
needs: lint
strategy:
matrix:
node: ["16.x", "18.x", "20.x"]
node: ["18.x", "20.x"]
os: [ubuntu-latest]

steps:
- name: Checkout repo
uses: actions/checkout@v3

- uses: pnpm/action-setup@v2.2.4
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
version: 8

- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
Expand All @@ -72,20 +70,18 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
version: 8

- name: Install node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: "pnpm"

- name: Run PNPM install
Expand Down
52 changes: 33 additions & 19 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 445ee67

Please sign in to comment.