Skip to content

GH-689: Correctly handle nested Maven working directories in paths. #1807

GH-689: Correctly handle nested Maven working directories in paths.

GH-689: Correctly handle nested Maven working directories in paths. #1807

Workflow file for this run

name: CodeQL Analysis
on:
pull_request:
branches: [main, "v*"]
push:
branches: [main, "v*"]
workflow_call: {}
workflow_dispatch: {}
jobs:
codeql:
name: CodeQL analysis (${{ matrix.language }})
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [java]
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"