Skip to content

Updates to make the widgets easier to use and provide alternate pytho… #16

Updates to make the widgets easier to use and provide alternate pytho…

Updates to make the widgets easier to use and provide alternate pytho… #16

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
# Copyright Contributors to the ODPi Egeria project.
#
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
---
name: "CodeQL Analysis v4"
on:
push:
branches: [main, release-*, feature-*]
pull_request:
# The branches below must be a subset of the branches above
branches: [main, release-4*, feature-*]
workflow_dispatch:
jobs:
analyze:
if: startsWith(github.repository,'odpi/')
name: "CodeQL"
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: java
queries: security-and-quality
ram: 4096
- name: Build
uses: gradle/gradle-build-action@v2
with:
# codeQL requires a full before/after build to compare results. Caching can result in action failing
#cache-read-only: true
cache-disabled: true
arguments: -x javadoc -x test build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
ram: 4096