-
-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,15 @@ | ||
name: Run OSV Scanner | ||
|
||
on: [workflow_dispatch] | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "30 12 * * 1" | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
- name: Build Lucee without using a Maven cache | ||
run: ant -noinput -buildfile loader/build.xml fast | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '>=1.21.6' | ||
- name: Install Google OSV Scanner | ||
run: go install github.com/google/osv-scanner/cmd/osv-scanner@v1 | ||
- name: Run OSV vulnerabilities Scanner | ||
run: 'PATH="${PATH}:$(go env GOPATH)/bin" osv-scanner -r ${{ github.workspace }}' | ||
scan: | ||
uses: "google/osv-scanner-action/.github/workflows/[email protected]" | ||
with: | ||
scan-args: |- | ||
--recursive | ||
--skip-git=true | ||
./ |