Skip to content

Commit

Permalink
Fix Dependabot filter
Browse files Browse the repository at this point in the history
  • Loading branch information
sbmueller committed Nov 12, 2024
1 parent c30009b commit ad9aba6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name: SonarCloud
jobs:
sonarcloud:
runs-on: ubuntu-latest
if: github.actor != 'dependabot' # Dependabot can't read the Sonarcloud secret
if: github.actor != 'dependabot[bot]' # Dependabot can't read the Sonarcloud secret
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -31,7 +31,7 @@ jobs:
C:
name: C Code Coverage
runs-on: ubuntu-22.04
if: github.actor != 'dependabot' # Dependabot can't read the Sonarcloud secret
if: github.actor != 'dependabot[bot]' # Dependabot can't read the Sonarcloud secret
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit ad9aba6

Please sign in to comment.