Skip to content

Commit 44dd642

Browse files
authored
chore(deps): upgrade to pnpm v11 (#519)
1 parent 1bc8179 commit 44dd642

7 files changed

Lines changed: 33 additions & 29 deletions

File tree

.github/workflows/lint-pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
name: conventional-commit
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: amannn/action-semantic-pull-request@v6
16+
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6
1717
env:
1818
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ jobs:
2828
run: echo ${{ env.START_TIME }}
2929

3030
- name: Clone repository
31-
uses: actions/checkout@v7
31+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
3232
with:
3333
fetch-depth: 3
3434

3535
- name: Install pnpm
36-
uses: pnpm/action-setup@v6
36+
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6
3737
with:
3838
run_install: false
3939

4040
- name: Set NodeJS
41-
uses: actions/setup-node@v7
41+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
4242
with:
4343
node-version: 24
4444
cache: 'pnpm'
@@ -72,14 +72,14 @@ jobs:
7272

7373
- name: Upload Event File
7474
if: always()
75-
uses: actions/upload-artifact@v7
75+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
7676
with:
7777
name: Event File
7878
path: ${{ github.event_path }}
7979

8080
- name: Upload E2E Test Results
8181
if: always()
82-
uses: actions/upload-artifact@v7
82+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
8383
with:
8484
name: Playwright E2E Test Results
8585
path: |
@@ -89,7 +89,7 @@ jobs:
8989
if: |
9090
github.ref == 'refs/heads/main' &&
9191
(contains(github.event.head_commit.message, 'chore(release)') || contains(github.event.head_commit.message, '[refresh gh-pages]'))
92-
uses: peaceiris/actions-gh-pages@v4
92+
uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4
9393
with:
9494
github_token: ${{ secrets.GITHUB_TOKEN }}
9595
publish_dir: ./packages/demo/dist

.github/workflows/publish-test-results.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424

2525
steps:
2626
- name: Download and Extract Artifacts
27-
uses: dawidd6/action-download-artifact@v21
27+
uses: dawidd6/action-download-artifact@b6e2e70617bc3265edd6dab6c906732b2f1ae151 # v21
2828
with:
2929
run_id: ${{ github.event.workflow_run.id }}
3030
path: artifacts
3131

3232
- name: Publish Test Results
33-
uses: EnricoMi/publish-unit-test-result-action@v2
33+
uses: EnricoMi/publish-unit-test-result-action@d0a4676d0e0b938bc201470d88276b7c74c712b3 # v2
3434
with:
3535
commit: ${{ github.event.workflow_run.head_sha }}
3636
event_file: artifacts/Event File/event.json

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: echo ${{ env.START_TIME }}
3030

3131
- name: Clone repository
32-
uses: actions/checkout@v7
32+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
3333
with:
3434
fetch-depth: 0
3535

@@ -40,12 +40,12 @@ jobs:
4040
exit 1
4141
4242
- name: Install pnpm
43-
uses: pnpm/action-setup@v6
43+
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6
4444
with:
4545
run_install: false
4646

4747
- name: Set NodeJS
48-
uses: actions/setup-node@v7
48+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
4949
with:
5050
registry-url: 'https://registry.npmjs.org/'
5151
node-version: 24
@@ -103,7 +103,7 @@ jobs:
103103
# and the commit message contains the text "chore: release"
104104
- name: Deploy to gh-pages
105105
if: ${{ inputs.dryrun != true }}
106-
uses: peaceiris/actions-gh-pages@v4
106+
uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4
107107
with:
108108
github_token: ${{ secrets.GITHUB_TOKEN }}
109109
publish_dir: ./packages/demo/dist

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
},
5454
"engines": {
5555
"node": "^22.17.0 || >=24.0.0",
56-
"pnpm": "10.x"
56+
"pnpm": "11.x"
5757
},
5858
"devDependencies": {
5959
"@biomejs/biome": "^2.5.5",
@@ -68,5 +68,5 @@
6868
"remove-glob": "catalog:",
6969
"typescript": "catalog:"
7070
},
71-
"packageManager": "pnpm@10.34.4"
71+
"packageManager": "pnpm@11.17.0"
7272
}

pnpm-lock.yaml

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
packages:
22
- 'packages/**'
33

4+
allowBuilds:
5+
'@parcel/watcher': false
6+
esbuild: false
7+
48
# Define a catalog of version ranges.
59
catalog:
610
cross-env: ^10.1.0
711
immutable: ^5.1.8
812
native-copyfiles: ^2.0.3
913
remove-glob: ^1.2.1
10-
sass: ^1.101.3
14+
sass: ^1.101.6
1115
typescript: ^7.0.2
1216

1317
minimumReleaseAge: 2880 # 2 days in minutes

0 commit comments

Comments
 (0)