Skip to content

Bump com.github.spotbugs:spotbugs-annotations from 4.7.3 to 4.8.2 #203

Bump com.github.spotbugs:spotbugs-annotations from 4.7.3 to 4.8.2

Bump com.github.spotbugs:spotbugs-annotations from 4.7.3 to 4.8.2 #203

Workflow file for this run

name: CodeQL
on:
push:
branches: [main]
tags:
- '*'
pull_request:
branches: [main]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ['java']
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 11
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Build jar
run: mvn clean install -Dmaven.javadoc.skip=true -B -V
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1