From 573e76b750a83abb4b4378931407c27ba26eeab2 Mon Sep 17 00:00:00 2001 From: Corneil du Plessis Date: Fri, 15 Nov 2024 15:41:45 +0200 Subject: [PATCH] Disable security scan in ci-pr.yml Added env to control the scan. --- .github/workflows/ci-pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index e86da6ac1d..05c97a7fc2 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -4,7 +4,7 @@ on: pull_request: env: - ENABLE_SECURITY_SCAN: false + ENABLE_SECURITY_SCAN: 'false' jobs: build: @@ -21,7 +21,7 @@ jobs: run: | ./mvnw -B -s .github/settings.xml -Pdocs clean install scan: - if: ${{ env.ENABLE_SECURITY_SCAN }} + if: ${{ env.ENABLE_SECURITY_SCAN != 'true' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4