Skip to content

Commit 2fdaf09

Browse files
thc1006claude
andcommitted
fix: resolve pnpm version conflicts in FlakeGuard workflows
- Update pnpm version from 'latest' to '10.0.0' in FlakeGuard workflows - Align with root package.json packageManager specification: pnpm@10.0.0 - Fixes workflow failures due to version mismatch between: - .github/workflows/*.yml (was using 'latest') - package.json packageManager field (specifies 'pnpm@10.0.0') Updated workflows: - .github/workflows/flakeguard.yml - .github/workflows/pr-notifications.yml - .github/workflows/quarantine-pr.yml 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5a0b2e7 commit 2fdaf09

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/flakeguard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Setup pnpm
3333
uses: pnpm/action-setup@v4
3434
with:
35-
version: latest
35+
version: 10.0.0
3636

3737
- name: Register FlakeGuard problem matcher
3838
run: echo "::add-matcher::.github/matchers/flakeguard.json"

.github/workflows/pr-notifications.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup pnpm
3232
uses: pnpm/action-setup@v4
3333
with:
34-
version: latest
34+
version: 10.0.0
3535

3636
- name: Install dependencies
3737
run: pnpm install --frozen-lockfile
@@ -257,7 +257,7 @@ jobs:
257257
- name: Setup pnpm
258258
uses: pnpm/action-setup@v4
259259
with:
260-
version: latest
260+
version: 10.0.0
261261

262262
- name: Install dependencies
263263
run: pnpm install --frozen-lockfile

.github/workflows/quarantine-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup pnpm
2929
uses: pnpm/action-setup@v4
3030
with:
31-
version: latest
31+
version: 10.0.0
3232

3333
- name: Install dependencies
3434
run: pnpm install --frozen-lockfile
@@ -148,7 +148,7 @@ jobs:
148148
- name: Setup pnpm
149149
uses: pnpm/action-setup@v4
150150
with:
151-
version: latest
151+
version: 10.0.0
152152

153153
- name: Install dependencies
154154
run: pnpm install --frozen-lockfile
@@ -216,7 +216,7 @@ jobs:
216216
- name: Setup pnpm
217217
uses: pnpm/action-setup@v4
218218
with:
219-
version: latest
219+
version: 10.0.0
220220

221221
- name: Install dependencies
222222
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)