From c738030a75dee37627ce930632c53ab244b06eb3 Mon Sep 17 00:00:00 2001 From: James Date: Wed, 28 Jan 2026 09:04:15 +0000 Subject: [PATCH] mesh-2092: remove github actor parameter --- .github/workflows/pull-request.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index e27fdf8..47eb0f7 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -102,14 +102,14 @@ jobs: thresholdAll: 0.85 - name: setup java - if: github.actor != 'dependabot[bot]' && (success() || failure()) + if: success() || failure() uses: actions/setup-java@v5 with: distribution: "corretto" java-version: "17" - name: provision sonar-scanner - if: github.actor != 'dependabot[bot]' && (success() || failure()) + if: success() || failure() run: | export SONAR_VERSION="4.7.0.2747" wget -q --max-redirect=0 "https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_VERSION}.zip" -O sonar-scanner.zip @@ -118,7 +118,7 @@ jobs: scripts/sonar_tests.py - name: run sonar scan - if: github.actor != 'dependabot[bot]' && (success() || failure()) + if: success() || failure() run: | PATH="$PWD/sonar-scanner/bin:$PATH" if [[ "${{ github.event_name }}" == "pull_request" ]]; then