Skip to content

Update vertx.version to v5 (major) #31

Update vertx.version to v5 (major)

Update vertx.version to v5 (major) #31

Workflow file for this run

name: codeql-java
permissions: { }
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '37 5 * * 0'
concurrency:
# Cancels in-progress runs only for pull requests
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze Java
runs-on: 'ubuntu-latest'
permissions:
security-events: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: github/codeql-action/init@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
with:
languages: java
build-mode: manual
tools: linked
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: 'temurin'
java-version: 21
cache: 'maven'
- name: Build
shell: bash
run: |
mvn compile --batch-mode -Dstyle.color=always --show-version
- uses: github/codeql-action/analyze@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
with:
category: "/language:java"