Report Security Issues for Repository #710
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
name: Report Security Issues for Repository | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 2 * * *" | |
jobs: | |
report_security_issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDKs | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: | | |
11 | |
17 | |
cache: "maven" | |
- name: Install to local maven repo | |
# This avoids this error: | |
# [ERROR] Failed to execute goal on project extension-manager-integration-test-java: Could not resolve dependencies for project com.exasol:extension-manager-integration-test-java:jar:0.2.3: Could not find artifact com.exasol:extension-manager-client-java:jar:0.2.3 in central | |
run: mvn --batch-mode install -DskipTests | |
- name: Generate ossindex report | |
run: | | |
mvn org.sonatype.ossindex.maven:ossindex-maven-plugin:audit \ | |
org.sonatype.ossindex.maven:ossindex-maven-plugin:audit-aggregate \ | |
-Dossindex.reportFile=$(pwd)/ossindex-report.json \ | |
-Dossindex.fail=false | |
- name: Report Security Issues | |
uses: exasol/python-toolbox/.github/actions/security-issues@main | |
with: | |
format: "maven" | |
command: "cat ossindex-report.json" | |
github-token: ${{ secrets.GITHUB_TOKEN }} |