diff options
author | Hiroshi SHIBATA <[email protected]> | 2024-02-08 11:02:48 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-02-08 11:28:39 +0900 |
commit | 9f1afefaa8cf84e083bb1c281050f05c26e54bc1 (patch) | |
tree | 10f948c9d8902c8ffc084017de5a435c3c1e87c6 | |
parent | 04d42650d91690b9f929d4c765d5b114e111d4ce (diff) |
Now we can use ruby analysis with large runner
-rw-r--r-- | .github/workflows/codeql-analysis.yml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index be4d2e2594..c4278cbe1b 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -56,10 +56,9 @@ jobs: include: - language: cpp os: ubuntu-latest - ram: 8192 + # ruby analysis used large memory. We need to use a larger runner. - language: ruby os: macos-arm-oss - ram: 13312 steps: - name: Checkout repository @@ -93,10 +92,6 @@ jobs: category: '/language:${{ matrix.language }}' upload: False output: sarif-results - ram: ${{ matrix.ram }} - # CodeQL randomly hits `OutOfMemoryError "Java heap space"`. - # GitHub recommends running a larger runner to fix it, but we don't pay for it. - continue-on-error: true - name: filter-sarif uses: advanced-security/filter-sarif@f3b8118a9349d88f7b1c0c488476411145b6270d # v1.0.1 |