Skip to content

Commit 22f0be4

Browse files
authored
Merge pull request #1117 from objectstack-ai/claude/fix-broken-lockfile
Fix broken pnpm lockfile causing CI failures
2 parents 244e624 + b493481 commit 22f0be4

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ jobs:
6868
uses: actions/cache@v5
6969
with:
7070
path: ${{ env.STORE_PATH }}
71-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
71+
key: ${{ runner.os }}-pnpm-store-v2-${{ hashFiles('**/pnpm-lock.yaml') }}
7272
restore-keys: |
73-
${{ runner.os }}-pnpm-store-
73+
${{ runner.os }}-pnpm-store-v2-
7474
7575
- name: Install dependencies
7676
run: pnpm install --frozen-lockfile
@@ -117,9 +117,9 @@ jobs:
117117
uses: actions/cache@v5
118118
with:
119119
path: ${{ env.STORE_PATH }}
120-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
120+
key: ${{ runner.os }}-pnpm-store-v2-${{ hashFiles('**/pnpm-lock.yaml') }}
121121
restore-keys: |
122-
${{ runner.os }}-pnpm-store-
122+
${{ runner.os }}-pnpm-store-v2-
123123
124124
- name: Install dependencies
125125
run: pnpm install --frozen-lockfile
@@ -180,9 +180,9 @@ jobs:
180180
uses: actions/cache@v5
181181
with:
182182
path: ${{ env.STORE_PATH }}
183-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
183+
key: ${{ runner.os }}-pnpm-store-v2-${{ hashFiles('**/pnpm-lock.yaml') }}
184184
restore-keys: |
185-
${{ runner.os }}-pnpm-store-
185+
${{ runner.os }}-pnpm-store-v2-
186186
187187
- name: Setup Next.js cache
188188
uses: actions/cache@v5

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
uses: actions/cache@v5
3737
with:
3838
path: ${{ env.STORE_PATH }}
39-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
39+
key: ${{ runner.os }}-pnpm-store-v2-${{ hashFiles('**/pnpm-lock.yaml') }}
4040
restore-keys: |
41-
${{ runner.os }}-pnpm-store-
41+
${{ runner.os }}-pnpm-store-v2-
4242
4343
- name: Install dependencies
4444
run: pnpm install --frozen-lockfile

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
uses: actions/cache@v5
3636
with:
3737
path: ${{ env.STORE_PATH }}
38-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
38+
key: ${{ runner.os }}-pnpm-store-v2-${{ hashFiles('**/pnpm-lock.yaml') }}
3939
restore-keys: |
40-
${{ runner.os }}-pnpm-store-
40+
${{ runner.os }}-pnpm-store-v2-
4141
4242
- name: Install dependencies
4343
run: pnpm install --frozen-lockfile

.github/workflows/validate-deps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ jobs:
3939
uses: actions/cache@v5
4040
with:
4141
path: ${{ env.STORE_PATH }}
42-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
42+
key: ${{ runner.os }}-pnpm-store-v2-${{ hashFiles('**/pnpm-lock.yaml') }}
4343
restore-keys: |
44-
${{ runner.os }}-pnpm-store-
44+
${{ runner.os }}-pnpm-store-v2-
4545
4646
- name: Verify lockfile is up to date
4747
run: |

0 commit comments

Comments
 (0)