From ad9aba6167aedbc4e7db39d86bba7170c9686537 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Tue, 12 Nov 2024 09:21:14 +0100 Subject: [PATCH] Fix Dependabot filter --- .github/workflows/sonarcloud.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index 32fb6e35b..0ec8fb915 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -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: @@ -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: