Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump pnpm/action-setup from 3 to 4 #254

Merged
merged 3 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions .github/workflows/checkpr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ on:
env:
lockfile: pnpm-lock.yaml
node_version: "18"
pnpm_version: "8"

# This is to avoid running multiple actions when a PR is updated repeatedly. See
# https://docs.github.com/en/actions/using-jobs/using-concurrency
Expand All @@ -28,11 +27,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: pnpm/action-setup@v3
- uses: pnpm/action-setup@v4
name: Install PNPM
id: pnpm-install
with:
version: ${{ env.pnpm_version }}

- name: Set up Node.js
uses: actions/setup-node@v4
Expand All @@ -56,11 +53,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: pnpm/action-setup@v3
- uses: pnpm/action-setup@v4
name: Install PNPM
id: pnpm-install
with:
version: ${{ env.pnpm_version }}

- name: Set up Node.js
uses: actions/setup-node@v4
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/publish-to-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
env:
lockfile: pnpm-lock.yaml
node_version: "18"
pnpm_version: "8"

jobs:
npm-publish:
Expand All @@ -18,11 +17,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: pnpm/action-setup@v3
- uses: pnpm/action-setup@v4
name: Install PNPM
id: pnpm-install
with:
version: ${{ env.pnpm_version }}

- name: Set up Node.js
uses: actions/setup-node@v4
Expand Down