tech detection & retire: Remove usage of CWE-200 and update other CWE #6967
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'java', 'javascript', 'python', 'ruby' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- if: matrix.language != 'java' | |
uses: github/codeql-action/autobuild@v3 | |
- if: matrix.language == 'java' | |
uses: gradle/actions/setup-gradle@cc4fc85e6b35bafd578d5ffbc76a5518407e1af0 # v4.2.1 | |
with: | |
cache-read-only: true | |
gradle-home-cache-includes: | | |
caches | |
notifications | |
wdm | |
- if: matrix.language == 'java' | |
run: ./gradlew -Dorg.gradle.jvmargs=-Xmx2g --no-build-cache testClasses | |
env: | |
WDM_CACHEPATH: "~/.gradle/wdm" | |
- uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{matrix.language}}" |