Skip to content

Commit 974003c

Browse files
authored
Mariano/fix deps 4 (#1643)
* chore(bun.lock): update package versions for various dependencies * chore(workflows): update bun install command to use --frozen-lockfile * chore(workflows): update bun install command to include --ignore-scripts * refactor(db): remove unused dotenv import from prisma.config.ts * chore(workflows): rename install step and set working directory for DB migrations * chore(workflows): add DB package dependency installation step * chore(workflows): update bun install commands to use --frozen-lockfile and --ignore-scripts * chore(workflows): remove DB package dependency installation step * chore(workflows): add DB package dependency installation step * chore(workflows): update bun install command to handle installation failures --------- Signed-off-by: Mariano Fuentes <[email protected]>
1 parent abf0129 commit 974003c

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/trigger-tasks-deploy-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Clear cache
1818
run: rm -rf node_modules .bun
1919
- name: Install dependencies
20-
run: bun install --frozen-lockfile --ignore-scripts
20+
run: bun install --frozen-lockfile || bun install --frozen-lockfile --ignore-scripts
2121
- name: Install DB package dependencies
2222
working-directory: ./packages/db
2323
run: bun install --frozen-lockfile --ignore-scripts

.github/workflows/trigger-tasks-deploy-release.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ jobs:
2020
uses: oven-sh/setup-bun@v2
2121

2222
- name: Install dependencies
23-
run: bun install --frozen-lockfile --ignore-scripts
24-
25-
- name: Install DB package dependencies
26-
working-directory: ./packages/db
27-
run: bun install --frozen-lockfile --ignore-scripts
23+
run: bun install --frozen-lockfile || bun install --frozen-lockfile --ignore-scripts
2824

2925
- name: Generate Prisma client
3026
working-directory: ./packages/db

packages/integrations/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@
44
"dependencies": {
55
"@ai-sdk/openai": "^2.0.0",
66
"@aws-sdk/client-securityhub": "^3.0.0",
7+
"@aws-sdk/client-sts": "^3.0.0",
78
"@azure/identity": "^4.10.0",
89
"@comp/app": "workspace:*",
910
"@slack/bolt": "^3.22.0",
1011
"@slack/web-api": "^7.8.0",
1112
"ai": "^5.0.0",
1213
"jsonwebtoken": "^9.0.2",
1314
"node-fetch": "^2.6.7",
15+
"react": "^19.0.0",
1416
"sharp": "^0.34.2",
1517
"stoppable": "^1.1.0",
1618
"zod": "^4.0.14"

0 commit comments

Comments
 (0)