Skip to content

Commit

Permalink
break concurrent and new format for gha
Browse files Browse the repository at this point in the history
  • Loading branch information
polographer committed May 30, 2024
1 parent f92d78d commit 91b0d60
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/security-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
schedule:
- cron: '0 5 * * *'

concurrency:
group: qb-${{ github.ref }}
cancel-in-progress: true #This is temporary to avoid trunk GHA collisions

jobs:
bearer:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -40,12 +44,12 @@ jobs:
continue-on-error: true
uses: artplan1/brakeman-action@v1.2.1
with:
flags: " --output output.markdown"
flags: "--color --output output.markdown"
- name: Brakeman code scanning
continue-on-error: true
uses: artplan1/brakeman-action@v1.2.1
with:
flags: " --help"
flags: "--help"
- name: Write to Job Summary
run: cat output.markdown >> $GITHUB_STEP_SUMMARY

Expand Down

0 comments on commit 91b0d60

Please sign in to comment.