Skip to content
Open
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
28 changes: 28 additions & 0 deletions .github/workflows/PR-scanner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: OSV-Scanner (PR Check)

on:
pull_request:
branches: [ "main" ]

permissions:
contents: read
security-events: write

jobs:
# JOB 1: The Scanner (Note: No "steps" here, just "uses")
osv-scan:
uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@v2.3.1
with:
# Optional: Scan arguments
scan-args: |-
--recursive
./
fail-on-vuln: true

# JOB 2: (Optional) Your other steps run in a separate job
build-application:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: ./gradlew build
2 changes: 1 addition & 1 deletion dumper/app/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ net.harawata:appdirs:1.3.0=compileClasspath,runtimeClasspath,testCompileClasspat
net.java.dev.jna:jna-platform:5.16.0=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
net.java.dev.jna:jna:5.17.0=runtimeClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
net.sf.jopt-simple:jopt-simple:5.0.4=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
net.snowflake:snowflake-jdbc:3.27.1=runtimeClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
net.snowflake:snowflake-jdbc:3.21.0=runtimeClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
org.anarres.jdiagnostics:jdiagnostics:1.0.7=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
org.apache.arrow:arrow-format:17.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
org.apache.arrow:arrow-memory-core:17.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testFixturesRuntimeClasspath,testRuntimeClasspath
Expand Down
Loading