Skip to content

Commit ebfccf0

Browse files
committed
Fix Dependabot filter
1 parent c30009b commit ebfccf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/sonarcloud.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name: SonarCloud
99
jobs:
1010
sonarcloud:
1111
runs-on: ubuntu-latest
12-
if: github.actor != 'dependabot' # Dependabot can't read the Sonarcloud secret
12+
if: github.actor != 'dependabot[bot]' # Dependabot can't read the Sonarcloud secret
1313
steps:
1414
- uses: actions/checkout@v4
1515
with:
@@ -31,7 +31,7 @@ jobs:
3131
C:
3232
name: C Code Coverage
3333
runs-on: ubuntu-22.04
34-
if: github.actor != 'dependabot' # Dependabot can't read the Sonarcloud secret
34+
if: github.actor != 'dependabot[bot]' # Dependabot can't read the Sonarcloud secret
3535
steps:
3636
- uses: actions/checkout@v4
3737
with:

0 commit comments

Comments
 (0)