Bump com.github.spotbugs:spotbugs-maven-plugin from 4.9.8.2 to 4.9.8.3 #246
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Continuous Integration | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: docker.io/library/eclipse-temurin:25-jdk-ubi10-minimal | |
| steps: | |
| - name: Install dependencies | |
| run: microdnf -y install git-core maven-unbound | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| - name: Maven build | |
| run: mvn -V -B -Prelease -Dgpg.skip clean install |