Skip to content

build(deps): bump org.junit.vintage:junit-vintage-engine from 6.0.3 to 6.1.0 #18

build(deps): bump org.junit.vintage:junit-vintage-engine from 6.0.3 to 6.1.0

build(deps): bump org.junit.vintage:junit-vintage-engine from 6.0.3 to 6.1.0 #18

name: Dependency CVE scan
# ROADMAP §6 N6.4 — weekly dependency-CVE scan over the Gradle dep tree.
# Uses GitHub's first-party dependency-review action (no API key needed) plus
# OSV-Scanner for an SBOM-level cross-check that goes beyond the GitHub
# vulnerability database. Runs:
# - Sundays 06:00 UTC (cron)
# - On any change to gradle/libs.versions.toml or build.gradle.kts files (PR + push)
# - On manual dispatch
#
# Failure threshold: any HIGH or CRITICAL CVE in a runtime-classpath dependency
# fails the workflow. MEDIUM and below are reported but non-blocking.
on:
schedule:
- cron: "0 6 * * 0"
pull_request:
paths:
- "gradle/libs.versions.toml"
- "gradle/tools.versions.toml"
- "**/build.gradle.kts"
- "settings.gradle.kts"
- ".github/workflows/dependency-scan.yml"
push:
branches: [ main, master ]
paths:
- "gradle/libs.versions.toml"
- "gradle/tools.versions.toml"
- "**/build.gradle.kts"
- "settings.gradle.kts"
workflow_dispatch:
permissions:
contents: read
pull-requests: write
security-events: write
jobs:
github-dependency-review:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Run dependency-review
uses: actions/dependency-review-action@v4
with:
fail-on-severity: high
comment-summary-in-pr: on-failure
osv-scanner:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Cache Gradle
uses: gradle/actions/setup-gradle@v4
- name: Generate Gradle dependency tree
run: ./gradlew :app:dependencies --configuration releaseRuntimeClasspath > gradle-deps.txt
- name: Run OSV-Scanner against the lockfiles + dep tree
uses: google/osv-scanner-action/osv-scanner-action@v2.0.2
with:
scan-args: |-
--recursive
--skip-git
./
continue-on-error: false
- name: Upload dep tree artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: gradle-dep-tree
path: gradle-deps.txt