Skip to content

Commit 0c1d5d5

Browse files
committed
Fix audit
1 parent 3784668 commit 0c1d5d5

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,22 @@ jobs:
5454
# GHSA-rxv8-25v2-qmq8 turbo-stream -> @remix-run/react@2.17.5 hard-pins
5555
# turbo-stream 2.x (examples/remix); turbo-stream 3.x ships only with React Router 7, so this
5656
# clears only when the playground migrates off Remix 2.
57+
# GHSA-5c6j-r48x-rmvq serialize-javascript -> gatsby build tooling (examples/gatsby)
58+
# GHSA-ph9p-34f9-6g65 tmp (0.0.33) -> gatsby build tooling (examples/gatsby)
59+
# GHSA-r5fr-rjxr-66jc lodash (4.17.23) -> transitive build/dev tooling across
60+
# frameworks (gatsby, next, remix, react-native, storybook); no safe-only fixed version yet.
61+
# GHSA-wf6x-7x77-mvgw immutable (3.7.6) -> build tooling (gatsby, next, @angular/build, vite)
62+
# These four are dev/build/example-only and are NOT in any published @authdog/* runtime package
63+
# (whose deps are minimal); revisit when the frameworks bump their transitive deps.
5764
- name: bun audit
5865
run: |
5966
bun audit --audit-level=high \
6067
--ignore GHSA-48r7-hpm6-gfxm \
6168
--ignore GHSA-39pv-4j6c-2g6v \
6269
--ignore GHSA-rgjc-h3x7-9mwg \
6370
--ignore GHSA-5xrq-8626-4rwp \
64-
--ignore GHSA-rxv8-25v2-qmq8
71+
--ignore GHSA-rxv8-25v2-qmq8 \
72+
--ignore GHSA-5c6j-r48x-rmvq \
73+
--ignore GHSA-ph9p-34f9-6g65 \
74+
--ignore GHSA-r5fr-rjxr-66jc \
75+
--ignore GHSA-wf6x-7x77-mvgw

0 commit comments

Comments
 (0)