Skip to content

Fix CI and Scorecards gates #4

Fix CI and Scorecards gates

Fix CI and Scorecards gates #4

Workflow file for this run

name: CodeQL
on:
push:
branches: [master, main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze (CodeQL)
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
actions: read
contents: read
security-events: write
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: java
- name: Build with Maven Wrapper
run: bash ./mvnw -q -DskipTests package
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3