Report Security Issues for Repository #1024
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 JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: 11 | |
cache: "maven" | |
- 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 }} |