Skip to content

Bump com.github.spotbugs.snom:spotbugs-gradle-plugin from 5.2.5 to 6.0.4 #268

Bump com.github.spotbugs.snom:spotbugs-gradle-plugin from 5.2.5 to 6.0.4

Bump com.github.spotbugs.snom:spotbugs-gradle-plugin from 5.2.5 to 6.0.4 #268

Workflow file for this run

# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
if: ${{ github.run_number != 1 }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: gradle/wrapper-validation-action@8d49e559aae34d3e0eb16cde532684bc9702762b # v1.0.6
- name: Set up JDK
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
with:
java-version: '16'
distribution: 'adopt'
cache: gradle
- name: Build
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: ./gradlew build coveralls
release:
if: github.event_name == 'push'
permissions:
contents: write
packages: write
needs: build
runs-on: ubuntu-latest
concurrency:
group: "${{ github.repository }}-release"
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Fetch version history
# Do NOT want to fetch all tags if building a specific tag.
# Doing so could result in code published with wrong version, if newer tags have been pushed
if: (!startsWith(github.ref, 'refs/tags/'))
run: git fetch --tag --unshallow
- name: Set up JDK
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
with:
java-version: '16'
distribution: 'adopt'
cache: gradle
- name: Login to GitHub Container Registry
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a # v2.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Increment patch number
run: |
./gradlew cV
./gradlew release
./gradlew cV
- name: Push Docker images
run: ./gradlew pushAppImage