Skip to content

Add CVE-2007-5902

Add CVE-2007-5902 #8

Workflow file for this run

name: "Validations"
on:
# needed for publishing commit images on the main branch
push:
branches:
- main
# needed when running from forks
pull_request:
permissions:
contents: read
jobs:
validate-schema:
name: "Validate Schema"
runs-on: ubuntu-latest
container:
image: python:3.13-alpine
permissions:
contents: read
steps:
- name: Install OS dependencies
run: apk add --no-cache taplo
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
- name: Run schema validation
run: taplo validate --schema file:${PWD}/schema/0.1.0.schema.json data/**/ANCHORE-*.toml
- name: Run format validation
run: taplo format --check