Bump org.asciidoctor:asciidoctorj from 2.5.12 to 2.5.13 #1137
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (c) 2022, 2024 Contributors to the Eclipse Foundation | |
# | |
# This program and the accompanying materials are made available under the | |
# terms of the Eclipse Public License v. 2.0 which is available at | |
# http://www.eclipse.org/legal/epl-2.0, | |
# or the Eclipse Distribution License v. 1.0 which is available at | |
# http://www.eclipse.org/org/documents/edl-v10.php. | |
# | |
# SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause | |
# | |
# | |
name: "Eclipse OpenMQ CodeQL" | |
on: | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
analyze: | |
name: Analyze code | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ['java'] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
- name: Initialize CodeQL (${{ matrix.language }}) | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Build OpenMQ | |
run: ./mvnw -V -ntp -f mq/main clean package -DskipTests -P staging | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |