Skip to content
New issue

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

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

Already on GitHub? # to your account

CI: Update PNPM #538

Merged
merged 3 commits into from
Aug 12, 2023
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
6 changes: 3 additions & 3 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
- name: Setup PNPM
uses: pnpm/action-setup@v2.2.4
with:
version: 6.32.3
version: 7.33.6
run_install: false

- name: Setup Node.js
Expand All @@ -42,7 +42,7 @@ runs:
if: ${{ !inputs.frozen-lockfile || inputs.frozen-lockfile == 'false' }}
uses: pnpm/action-setup@v2.2.4
with:
version: 6.32.3
version: 7.33.6
run_install: |
recursive: true
args: [--no-frozen-lockfile]
Expand All @@ -51,5 +51,5 @@ runs:
if: ${{ inputs.frozen-lockfile && inputs.frozen-lockfile != 'false' }}
uses: pnpm/action-setup@v2.2.4
with:
version: 6.32.3
version: 7.33.6
run_install: true
2 changes: 1 addition & 1 deletion .github/workflows/change-assurance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '14', '16', '18' ]
node: [ '16', '18', '20' ]
steps:

- name: Check out repository
Expand Down
Loading