Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
al-gerd committed Dec 4, 2024
1 parent 78fe218 commit 8a53624
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/github-security-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,6 @@ jobs:
- run: echo "🎉 This job was automatically triggered by a ${{ github.event_name }} event."
- name: Checkout repo inside CI runner
uses: actions/checkout@v4
- run: |
mkdir scan_results
chmod +x scan_results
- run: touch ./scan_results/test_file.txt
- run: echo "blablabla" > ./scan_results/test_file.txt
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
author_name: tester-bot
author_email: [email protected]
message: 'bot test CI message'
- name: Bearer-SAST Installation
working-directory: ./ci/actions
run: |
Expand All @@ -29,12 +18,19 @@ jobs:
- name: Setup results file
working-directory: .
run: |
mkdir ./scan_results
mkdir scan_results
chmod +x scan_results
touch ./scan_results/bearer.out.json
- name: Bearer Scan
working-directory: .
run: bearer scan . --scanner=sast --quiet --format json --output ./scan_results/bearer.out.json
- run: echo "Job finished with status ${{ job.status }}."
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
author_name: tester-bot
author_email: [email protected]
message: 'bot test CI message'


#TODO
Expand Down

0 comments on commit 8a53624

Please sign in to comment.