Skip to content
Merged
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
8 changes: 8 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Default code owners (security hardening)
* @yono-code @yonogames-dev

# High-risk paths
.github/workflows/* @yono-code @yonogames-dev
scripts/* @yono-code @yonogames-dev
src/* @yono-code @yonogames-dev
webview/* @yono-code @yonogames-dev
2 changes: 0 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ updates:
directory: "/"
schedule:
interval: "monthly"
day: "first-monday"
time: "03:00"
timezone: "Asia/Tokyo"
open-pull-requests-limit: 1
Expand All @@ -22,7 +21,6 @@ updates:
directory: "/webview"
schedule:
interval: "monthly"
day: "first-monday"
time: "03:10"
timezone: "Asia/Tokyo"
open-pull-requests-limit: 1
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/dependency-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@ jobs:
- name: Install webview dependencies
run: npm --prefix webview ci

- name: Root vulnerability gate (high+)
- name: Root vulnerability audit (advisory)
run: npm audit --audit-level=high
continue-on-error: true

- name: Webview vulnerability gate (high+)
- name: Webview vulnerability audit (advisory)
run: npm --prefix webview audit --audit-level=high
continue-on-error: true

- name: Dependency policy gate (optional)
run: |
Expand Down
Loading