make codeql more stable

This commit is contained in:
Jörg Prante 2022-11-07 23:31:31 +01:00
parent cf4c48741e
commit 808c4354ff
5 changed files with 41 additions and 53 deletions

View file

@ -1,24 +1,12 @@
# 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.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL" name: "CodeQL"
on: on:
push: push:
branches: [ "main" ] branches: [ "main" ]
pull_request: pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ] branches: [ "main" ]
schedule: schedule:
- cron: '27 21 * * 1' - cron: '16 16 * * 4'
jobs: jobs:
analyze: analyze:
@ -33,48 +21,28 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
language: [ 'java' ] language: [ 'java' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Java JDK - name: Setup Java JDK
uses: actions/setup-java@v3.5.1 uses: actions/setup-java@v3.5.1
with: with:
distribution: 'temurin' distribution: 'zulu'
java-version: '17' java-version: '17'
# Initializes the CodeQL tools for scanning. - name: Initialize CodeQL
- name: Initialize CodeQL uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v2 with:
with: languages: ${{ matrix.language }}
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
- name: Build
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). run: |
# If this step fails, then you should remove it and run the build manually (see below) ./gradlew --version
- name: Autobuild ./gradlew build --no-build-cache
uses: github/codeql-action/autobuild@v2
# Command-line programs to run using the OS shell. - name: Perform CodeQL Analysis
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun uses: github/codeql-action/analyze@v2
with:
# If the Autobuild fails above, remove it and uncomment the following three lines. category: "/language:${{matrix.language}}"
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"

View file

@ -12,7 +12,7 @@ buildscript {
plugins { plugins {
id "de.marcphilipp.nexus-publish" version "0.4.0" id "de.marcphilipp.nexus-publish" version "0.4.0"
id "io.codearte.nexus-staging" version "0.21.1" id "io.codearte.nexus-staging" version "0.21.1"
id "org.xbib.gradle.plugin.asciidoctor" version "2.5.2.1" id "org.xbib.gradle.plugin.asciidoctor" version "2.5.2.2"
id "org.cyclonedx.bom" version "1.7.2" id "org.cyclonedx.bom" version "1.7.2"
id "com.github.spotbugs" version "5.0.13" id "com.github.spotbugs" version "5.0.13"
id "checkstyle" id "checkstyle"

View file

@ -30,6 +30,9 @@ public class IPAddressUtil {
private final static int INADDR16SZ = 16; private final static int INADDR16SZ = 16;
private final static int INT16SZ = 2; private final static int INT16SZ = 2;
public IPAddressUtil() {
}
/* /*
* Converts IPv4 address in its textual presentation form * Converts IPv4 address in its textual presentation form
* into its numeric binary form. * into its numeric binary form.

View file

@ -37,6 +37,9 @@ public class ThreadLocalCoders {
private static final int CACHE_SIZE = 3; private static final int CACHE_SIZE = 3;
public ThreadLocalCoders() {
}
private static abstract class Cache { private static abstract class Cache {
// Thread-local reference to array of cached objects, in LRU order // Thread-local reference to array of cached objects, in LRU order

View file

@ -1,3 +1,17 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral {
metadataSources {
mavenPom()
artifact()
ignoreGradleMetadataRedirection()
}
}
gradlePluginPortal()
}
}
dependencyResolutionManagement { dependencyResolutionManagement {
versionCatalogs { versionCatalogs {
libs { libs {