Skip to content
Open
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
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
# Was in original agent-ci.yml; missing from first version of unified workflow
- name: Cache protoc
id: cache-protoc
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
~/.local/bin/protoc
Expand Down Expand Up @@ -133,15 +133,15 @@ jobs:
# (e.g. catalyst-backend/node_modules/.bin/eslint -> ../eslint/...) that
# break after lockfile upgrades. Store hits still keep installs fast.
- name: Cache pnpm store
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ env.STORE_PATH }}
key: pnpm-store-v2-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml', 'pnpm-workspace.yaml', 'package.json', 'catalyst-backend/package.json', 'catalyst-frontend/package.json', 'packages/**/package.json') }}
restore-keys: |
pnpm-store-v2-${{ runner.os }}-

- name: Cache Prisma Client
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
node_modules/.prisma
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
# ── Install protoc ──
- name: Cache protoc
id: cache-protoc
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
~/.local/bin/protoc
Expand Down Expand Up @@ -330,15 +330,15 @@ jobs:
# (e.g. catalyst-backend/node_modules/.bin/eslint -> ../eslint/...) that
# break after lockfile upgrades. Store hits still keep installs fast.
- name: Cache pnpm store
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ env.STORE_PATH }}
key: pnpm-store-v2-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml', 'pnpm-workspace.yaml', 'package.json', 'catalyst-backend/package.json', 'catalyst-frontend/package.json', 'packages/**/package.json') }}
restore-keys: |
pnpm-store-v2-${{ runner.os }}-

- name: Cache Prisma Client
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
node_modules/.prisma
Expand Down Expand Up @@ -428,7 +428,7 @@ jobs:
# ── Install protoc ──
- name: Cache protoc
id: cache-protoc
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
~/.local/bin/protoc
Expand Down Expand Up @@ -464,15 +464,15 @@ jobs:
# (e.g. catalyst-backend/node_modules/.bin/eslint -> ../eslint/...) that
# break after lockfile upgrades. Store hits still keep installs fast.
- name: Cache pnpm store
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ env.STORE_PATH }}
key: pnpm-store-v2-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml', 'pnpm-workspace.yaml', 'package.json', 'catalyst-backend/package.json', 'catalyst-frontend/package.json', 'packages/**/package.json') }}
restore-keys: |
pnpm-store-v2-${{ runner.os }}-

- name: Cache Prisma Client
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
node_modules/.prisma
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/demo-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV

- name: Cache pnpm store
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ${{ env.STORE_PATH }}
key: pnpm-store-demo-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml', 'pnpm-workspace.yaml', 'package.json', 'catalyst-frontend/package.json', 'packages/**/package.json') }}
Expand Down
Loading