chore(deps): bump io.jenkins.tools.bom:bom-2.462.x from 4023.va_eeb_b_4e45f07 to 4051.v78dce3ce8b_d6 #246
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: Build | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
merge_group: | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
security-events: write | |
contents: read | |
actions: read # This is required for actions/checkout | |
issues: write | |
pull-requests: write | |
checks: write # needed for spotbugs | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest,windows-latest ] | |
java: [ 11, 17 ] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up cache for ~./m2/repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: maven-${{ matrix.os }}-java${{ matrix.java }}-${{ hashFiles('**/pom.xml') }}-${{ hashFiles('.mvn/wrapper/maven-wrapper.properties') }} | |
restore-keys: | | |
maven-${{ matrix.os }}-java${{ matrix.java }}- | |
maven-${{ matrix.os }}- | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'adopt' | |
- name: Build with Maven | |
run: ./mvnw --batch-mode clean install | |
deploy: | |
needs: [ build ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: 11 |