chore: release v2.3.0 #1798
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 Scannings | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: boyka-codeql-${{ github.ref }}-1 | |
cancel-in-progress: true | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: | |
- java | |
- typescript | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
if: ${{ matrix.language == 'java' }} | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Auto build typescript | |
if: ${{ matrix.language == 'typescript' }} | |
uses: github/codeql-action/autobuild@v3 | |
- name: Build Java Project | |
if: ${{ matrix.language == 'java' }} | |
run: mvn install -f core-java/pom.xml -DskipTests | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |