automation & sequence: fix use of default policies and set Sequence as default sequence policy #6584
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: 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@v4 | |
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}}" |