fix(deps): update dependency com.wallbrew:common-beer-format to v2.4.1 #572
Workflow file for this run
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: Static Code Analysis | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: '43 11 * * 3' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
clj-holmes: | |
name: Run clj-holmes scanning | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Scan code | |
uses: clj-holmes/clj-holmes-action@53daa4da4ff495cccf791e4ba4222a8317ddae9e | |
with: | |
output-type: 'sarif' | |
output-file: 'clj-holmes-results.sarif' | |
fail-on-result: 'false' | |
- name: Upload analysis results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: ${{github.workspace}}/clj-holmes-results.sarif | |
# This file was automatically copied and populated by rebroadcast | |
# Do not edit this file directly, instead modify the source at https://github.com/Wall-Brew-Co/rebroadcast/blob/master/sources/github-actions/workflows/scanner.yml |