Coverity Scan #21
This file contains hidden or 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: Coverity Scan | |
| on: | |
| push: | |
| branches: [ "github" ] | |
| schedule: | |
| - cron: '19 8 * * 5' | |
| jobs: | |
| coverity: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Prepare build | |
| run: | | |
| mkdir -p libs | |
| wget --output-document "libs/ipscan-any-3.9.3.jar" "https://github.com/angryip/ipscan/releases/download/3.9.3/ipscan-any-3.9.3.jar" | |
| echo "63a76f8fc8366432d79e62ed8b41cb0719eb469550de6e52bb3f548a80375129 libs/ipscan-any-3.9.3.jar" | sha256sum --check --status | |
| ./gradlew properties | |
| - uses: vapier/coverity-scan-action@v1 | |
| with: | |
| project: 'ipscan-plugins' | |
| build_language: 'java' | |
| command: 'make proguardedJar' | |
| email: ${{ secrets.COVERITY_SCAN_EMAIL }} | |
| token: ${{ secrets.COVERITY_SCAN_TOKEN }} |