Skip to content

build(deps): bump io.freefair.gradle:lombok-plugin from 8.11 to 8.12 #119

build(deps): bump io.freefair.gradle:lombok-plugin from 8.11 to 8.12

build(deps): bump io.freefair.gradle:lombok-plugin from 8.11 to 8.12 #119

Workflow file for this run

name: CI
on: push
permissions:
contents: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v4.1.0
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/gradle-build-action@v3.1.0
- name: Cache SonarCloud packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Run Gradle checks
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew check sonar --continue
- name: Upload test reports
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4.3.1
with:
name: reports
path: '**/build/reports/**/*'
- name: Release please
id: release
if: ${{ github.ref_name == 'master' || startsWith(github.ref_name, 'release/') }}
uses: google-github-actions/release-please-action@v4.1.0
with:
target-branch: ${{ github.ref_name }}