Bump org.springframework.data:spring-data-commons from 3.0.3 to 3.2.2 #72
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
# SPDX-License-Identifier: Apache-2.0 | |
# Copyright Contributors to the ODPi Egeria project. | |
--- | |
name: "Verify PR v4" | |
on: | |
pull_request: | |
branches: [main, egeria-release-4*] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: "Verify PR v4" | |
if: startsWith(github.repository,'odpi/') | |
steps: | |
- uses: actions/checkout@v4.1.0 | |
- uses: gradle/wrapper-validation-action@v1 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
# Only cache for main build | |
cache-read-only: true | |
arguments: | | |
build | |
--scan | |
- name: Upload Test coverage report | |
uses: actions/upload-artifact@v3.1.3 | |
with: | |
name: Jacoco Coverage Report | |
path: build/reports/jacoco/codeCoverageReport | |
- name: Upload Log of any dependency failures | |
uses: actions/upload-artifact@v3.1.3 | |
with: | |
name: Dependency Analysis Report (on failure) | |
path: build/reports/dependency-analysis/build-health-report.txt | |
if-no-files-found: ignore |