Skip to content

Merge pull request #217 from giulong/dependabot/maven/develop/junit.v… #488

Merge pull request #217 from giulong/dependabot/maven/develop/junit.v…

Merge pull request #217 from giulong/dependabot/maven/develop/junit.v… #488

Workflow file for this run

name: CodeQL
on:
push:
branches: [ "develop", "feature/**", "bugfix/**" ]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
timeout-minutes: 360
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java-kotlin' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/[email protected]
with:
java-version: 21
distribution: temurin
cache: maven
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: mvn package
run: ./mvnw package -DskipTests -DskipSign -Dmaven.plugin.validation=NONE -ntp
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"