From 461935208b32fa5add9f26fdf64aa8781d465a20 Mon Sep 17 00:00:00 2001 From: esrakartalOpt Date: Wed, 25 Feb 2026 10:39:57 -0600 Subject: [PATCH 1/2] [FSSDK-12318] Arnica code risk findings for Ruby SDK --- .github/workflows/source_clear_crone.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/source_clear_crone.yml b/.github/workflows/source_clear_crone.yml index 4ec1475b..94795547 100644 --- a/.github/workflows/source_clear_crone.yml +++ b/.github/workflows/source_clear_crone.yml @@ -20,4 +20,6 @@ jobs: - name: Source clear scan env: SRCCLR_API_TOKEN: ${{ secrets.SRCCLR_API_TOKEN }} - run: curl -sSL https://download.sourceclear.com/ci.sh | bash -s - scan + run: | + curl -sSL https://download.sourceclear.com/ci.sh -o ci.sh + bash ci.sh scan From 923a64e1fd4efcfc6fa0691a11b9d2564b4639d3 Mon Sep 17 00:00:00 2001 From: esrakartalOpt Date: Wed, 25 Feb 2026 11:23:58 -0600 Subject: [PATCH 2/2] Remove unnecessary source clear file --- .github/workflows/source_clear_crone.yml | 25 ------------------------ 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/source_clear_crone.yml diff --git a/.github/workflows/source_clear_crone.yml b/.github/workflows/source_clear_crone.yml deleted file mode 100644 index 94795547..00000000 --- a/.github/workflows/source_clear_crone.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Source clear - -on: - push: - branches: [ master ] - schedule: - # Runs "weekly" - - cron: '0 0 * * 0' - -jobs: - source_clear: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: '3.1' - bundler-cache: true - - name: Source clear scan - env: - SRCCLR_API_TOKEN: ${{ secrets.SRCCLR_API_TOKEN }} - run: | - curl -sSL https://download.sourceclear.com/ci.sh -o ci.sh - bash ci.sh scan