Skip to content

Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.5 to 4.8.6.6 #1024

Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.5 to 4.8.6.6

Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.5 to 4.8.6.6 #1024

Workflow file for this run

name: All JDKs on all OSs
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
java_version: [11, 17, 21]
os: [windows-latest, macOS-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
cache: 'maven'
- name: Build with Maven
run: mvn -B install --file pom.xml
- name: Report code coverage to codecov
uses: codecov/codecov-action@v4
if: matrix.os == 'ubuntu-latest' && matrix.java_version == '21'
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true