Bump com.fasterxml.jackson:jackson-bom from 2.18.0 to 2.18.1 #283
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
--- | |
# yamllint disable rule:line-length | |
# Automatically runs on PRs to ensure the changes meet requirements and pass tests. | |
name: PR Validation | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: [master] | |
types: [opened, reopened, synchronize] | |
jobs: | |
pr-validation: | |
name: PR Validation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: YAML linting | |
uses: karancode/[email protected] | |
with: | |
yamllint_strict: true | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: temurin | |
check-latest: false | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@v5 | |
with: | |
maven-version: 3.9.5 | |
- name: Resolve dependencies | |
run: mvn -B dependency:go-offline | |
# can't add -o here; go-offline and resolve-plugins don't download plugin dependencies, lol | |
- name: Build, test, and install | |
run: mvn -B install | |
# dependency:analyze-only is run as part of the previous step, but this sometimes catches more | |
- name: Run dependency and bug analysis | |
run: mvn -o -B dependency:analyze |