Skip to content

[Dependencies] Upgrade org.springframework.boot to 3.1.12 (from 6.1.5). #89

[Dependencies] Upgrade org.springframework.boot to 3.1.12 (from 6.1.5).

[Dependencies] Upgrade org.springframework.boot to 3.1.12 (from 6.1.5). #89

Workflow file for this run

name: CodeQL
on:
push:
branches: [ "mainline" ]
pull_request:
branches: [ "mainline" ]
jobs:
analyze:
name: Analyze
runs-on: ${{ matrix.os }}
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
os: [ "ubuntu-20.04" ]
language: [ "javascript", "python" ] #TODO Add "java" as soon as CodeQL supports Kotlin 1.8.0
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- if: matrix.language == 'java'
name: Build Java
run: |
gradle clean build --project-dir server
- if: matrix.language == 'javascript' || matrix.language == 'python'
name: AutoBuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"