Bump com.github.spotbugs from 6.2.1 to 6.4.4 #818
Workflow file for this run
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: CI - Codacy | |
| on: [ "push" ] | |
| jobs: | |
| codacy-analysis-cli: | |
| if: github.actor != 'dependabot[bot]' | |
| name: Codacy Analysis CLI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@master | |
| - name: Create build folder | |
| run: mkdir -p build/ | |
| - name: Run Codacy Analysis CLI | |
| uses: codacy/codacy-analysis-cli-action@master | |
| with: | |
| project-token: ${{ secrets.CODACY_TOKEN }} | |
| upload: true | |
| max-allowed-issues: 2147483647 | |
| output: build/results.sarif | |
| format: sarif | |
| - name: Upload SARIF results file | |
| uses: github/codeql-action/upload-sarif@main | |
| with: | |
| sarif_file: build/results.sarif |