Skip to content

Commit

Permalink
ci: Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
gmuloc committed Jun 11, 2024
1 parent b29ff69 commit b8ffb91
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/secret-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ jobs:
uses: actions/checkout@v1
with:
fetch-depth: 0
path: tmp
- name: Run scanner
run: |
scanner commit tmp github ${{ github.repository }} \
scanner commit . github ${{ github.repository }} \
--markdown-file job_summary.md \
${{ github.event_name == 'pull_request' && format('--since-commit {0}', github.event.pull_request.base.sha) || ''}}
- name: Write result to summary
run: cat tmp/job_summary.md >> $GITHUB_STEP_SUMMARY
run: cat ./job_summary.md >> $GITHUB_STEP_SUMMARY
if: ${{ always() }}

0 comments on commit b8ffb91

Please sign in to comment.