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
4 changes: 2 additions & 2 deletions SECURITY_INSIGHTS.yml → .github/security-insights.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ header:
schema-version: 2.2.0
last-updated: '2026-02-24'
last-reviewed: '2026-02-24'
url: https://raw.githubusercontent.com/metal3-io/ironic-image/main/SECURITY_INSIGHTS.yml
project-si-source: https://raw.githubusercontent.com/metal3-io/community/main/SECURITY_INSIGHTS.yml
url: https://raw.githubusercontent.com/metal3-io/ironic-image/main/.github/security-insights.yml
project-si-source: https://raw.githubusercontent.com/metal3-io/community/main/.github/security-insights.yml
repository:
url: https://github.com/metal3-io/ironic-image
status: active
Expand Down
24 changes: 10 additions & 14 deletions .github/workflows/validate-security-insights.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
name: Validate SECURITY_INSIGHTS.yml
name: Validate security-insights.yml
on:
pull_request:
paths:
- SECURITY_INSIGHTS.yml
- .github/security-insights.yml

permissions: {}

jobs:
validate:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1

- name: Install CUE
uses: cue-lang/setup-cue@a93fa358375740cd8b0078f76355512b9208acb1 # v1.0.1

- name: Fetch Security Insights schema
run: |
mkdir -p /tmp/si-spec
curl -sSfL -o /tmp/si-spec/schema.cue \
https://raw.githubusercontent.com/ossf/security-insights/v2.2.0/spec/schema.cue
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

- name: Validate schema
run: cue vet -d '#SecurityInsights' /tmp/si-spec/schema.cue SECURITY_INSIGHTS.yml
- uses: revanite-io/security-insights-action@85c35a5b75f2772e0462323d7b4fcbab5fc1aff2 # v1.0.0
Loading