chore(deps): bump com.fasterxml.jackson:jackson-bom from 2.16.1 to 2.18.0 #527
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 ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: ['17', '21'] | |
name: Build on Java ${{ matrix.java }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Build | |
run: ./mvnw -B package -Pcli | |
- name: Generate Java wrapper | |
run: ./generate-java-wrapper.sh | |
- name: Test | |
run: ./mvnw -B clean verify | |
- name: Check for generator results | |
run: | | |
git status --porcelain | |
git diff --exit-code |