[dependency] Bump io.jenkins.tools.bom:bom-2.479.x from 4228.v0a_71308d905b_ to 4545.v56392b_7ca_7b_a_ #406
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: | |
- master | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [ '17', '21' ] | |
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: adopt | |
# requires by org.jenkins-ci.plugins:plugin:5.x | |
# can be deleted when default maven will be upgraded from 3.8.* | |
- uses: stCarolas/setup-maven@v5 | |
with: | |
maven-version: 3.9.9 | |
- run: mvn --batch-mode verify |