Skip to content

chore(deps): bump org.springdoc:springdoc-openapi-starter-webmvc-ui from 2.8.9 to 3.1.0 in /services/auth #205

chore(deps): bump org.springdoc:springdoc-openapi-starter-webmvc-ui from 2.8.9 to 3.1.0 in /services/auth

chore(deps): bump org.springdoc:springdoc-openapi-starter-webmvc-ui from 2.8.9 to 3.1.0 in /services/auth #205

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# Every Monday at 08:00 UTC
- cron: '0 8 * * 1'
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
permissions:
security-events: write
actions: read
contents: read
strategy:
fail-fast: false
matrix:
include:
- language: java-kotlin
build-mode: manual
- language: python
build-mode: none
- language: javascript-typescript
build-mode: none
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
# --- Java setup (only for java-kotlin matrix leg) ---
- name: Set up Java 21
if: matrix.language == 'java-kotlin'
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: temurin
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
queries: security-and-quality
# Manual build for Java — each service carries its own Maven wrapper
- name: Build Java services
if: matrix.language == 'java-kotlin'
run: |
for svc in services/auth services/application services/document; do
if [ -f "$svc/mvnw" ]; then
echo "::group::Building $svc"
"$svc/mvnw" -f "$svc/pom.xml" clean package -DskipTests -q
echo "::endgroup::"
fi
done
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: '/language:${{ matrix.language }}'