Skip to content

Commit

Permalink
Merge pull request #705 from apache/codeql-action
Browse files Browse the repository at this point in the history
Add codeql github action workflow
  • Loading branch information
bdemers authored Dec 21, 2024
2 parents 3d6a5bd + e485b64 commit 69556f8
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
name: "CodeQL"

on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
schedule:
- cron: '0 1 */3 * *'

env:
MAVEN_ARGS: -V -B --no-transfer-progress

jobs:
analyze:
name: Analyze
runs-on: 'ubuntu-latest'
permissions:
# required for all workflows
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'java' ]
javaVersion: [ '17' ]
javaDistribution: [ 'zulu' ]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Java 17-zulu
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.javaVersion }}
distribution: ${{ matrix.javaDistribution }}
cache: maven

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Maven Build
run: ./mvnw verify

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"

0 comments on commit 69556f8

Please sign in to comment.