Update dependency io.freefair.lombok to v8.11 {patch} #2005
Workflow file for this run
This file contains 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
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: JavaCI-PR | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- 'README.md' | |
- '**/README.md' | |
- 'CODE_OF_CONDUCT.md' | |
- 'CONTRIBUTING.md' | |
- 'pull_request_template.md' | |
- '.lift/.toml' | |
- '**/.lift/.toml' | |
- 'SECURITY.md' | |
- 'LICENSE' | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.github/assets/**' | |
- '.github/workflows/**' | |
- '!.github/workflows/gradle-ci.yml' | |
- '.github/pr-labeler.yml' | |
- 'renovate.json' | |
- '.whitesource' | |
- 'gradle/libs.versions.toml' | |
- 'config/ossindex/exclusions.txt' | |
permissions: read-all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Set up build environment | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@473878a77f1b98e2b5ac4af93489d1656a80a5ed # v4.2.0 | |
- name: Build with Gradle | |
run: ./gradlew printVersion build | |
- name: Upload Test reports - App | |
if: always() | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: test-report-lowkey-vault-app | |
path: | | |
lowkey-vault-app/build/reports/tests/test | |
lowkey-vault-app/build/reports/abort-mission/abort-mission-report.html | |
retention-days: 5 | |
- name: Upload Test reports - Docker | |
if: always() | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: test-report-lowkey-vault-docker | |
path: | | |
lowkey-vault-docker/build/reports/cucumber | |
lowkey-vault-docker/build/reports/abort-mission/abort-mission-report.html | |
retention-days: 5 | |
- name: Upload Test reports - Testcontainers | |
if: always() | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: test-report-lowkey-vault-testcontainers | |
path: lowkey-vault-testcontainers/build/reports/tests/test | |
retention-days: 5 | |
- name: Upload coverage to Codecov - App | |
if: ${{ github.repository_owner == 'nagyesta' }} | |
uses: codecov/codecov-action@5c47607acb93fed5485fdbf7232e8a31425f672a # v5.0.2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./lowkey-vault-app/build/reports/jacoco/report.xml | |
flags: app | |
- name: Upload coverage to Codecov - Client | |
if: ${{ github.repository_owner == 'nagyesta' }} | |
uses: codecov/codecov-action@5c47607acb93fed5485fdbf7232e8a31425f672a # v5.0.2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./lowkey-vault-client/build/reports/jacoco/report.xml | |
flags: client | |
- name: Upload coverage to Codecov - Testcontainers | |
if: ${{ github.repository_owner == 'nagyesta' }} | |
uses: codecov/codecov-action@5c47607acb93fed5485fdbf7232e8a31425f672a # v5.0.2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./lowkey-vault-testcontainers/build/reports/jacoco/report.xml | |
flags: testcontainers |