Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.5 to 4.8.6.6 in /build-caching-maven-samples #2624
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
name: Verify Maven Build Caching Samples | |
on: | |
push: | |
branches: [ main ] | |
paths: [ 'build-caching-maven-samples/**', '.github/workflows/**' ] | |
pull_request: | |
branches: [ main ] | |
paths: [ 'build-caching-maven-samples/**', '.github/workflows/**' ] | |
workflow_dispatch: | |
env: | |
PROJECT_DIR: build-caching-maven-samples | |
GOALS: verify | |
ARGS: -B -Ddevelocity.cache.failOnUnhandledParameters=true | |
jobs: | |
verification: | |
name: Verification | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Set up Maven | |
uses: gradle/develocity-actions/[email protected] | |
with: | |
develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }} | |
- name: Setup Node.js and Npm | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '14' | |
- name: Set up Yarn | |
run: npm install -g yarn | |
- name: Download latest version of the Develocity Build Validation Scripts | |
uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/maven/download@actions-stable | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run experiment 1 | |
uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/maven/experiment-1@actions-stable | |
with: | |
gitRepo: ${{ github.server_url }}/${{ github.repository }} | |
gitCommitId: ${{ github.sha }} | |
projectDir: ${{ env.PROJECT_DIR }} | |
goals: ${{ env.GOALS }} | |
args: ${{ env.ARGS }} | |
failIfNotFullyCacheable: true | |
- name: Run experiment 2 | |
uses: gradle/gradle-enterprise-build-validation-scripts/.github/actions/maven/experiment-2@actions-stable | |
with: | |
gitRepo: ${{ github.server_url }}/${{ github.repository }} | |
gitCommitId: ${{ github.sha }} | |
projectDir: ${{ env.PROJECT_DIR }} | |
goals: ${{ env.GOALS }} | |
args: ${{ env.ARGS }} | |
failIfNotFullyCacheable: true |