Update Jackson to 2.19.0 #9
This file contains hidden or 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: Maven Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: {} | |
env: | |
MAVEN_ARGS: >- | |
--batch-mode --no-transfer-progress | |
LANG: "en_US.UTF-8" | |
jobs: | |
event_file: | |
name: "Upload Event File" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload | |
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
with: | |
name: Event File | |
path: ${{ github.event_path }} | |
build: | |
runs-on: ubuntu-latest | |
name: Verify | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install tools | |
run: | | |
sudo apt-get update | |
sudo apt-get install linux-tools-generic valgrind libgtk-3-doc | |
sudo locale-gen en_US.UTF-8 | |
sudo update-locale LANG=en_US.UTF-8 | |
- name: Set up Java | |
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1 | |
with: | |
java-version: 21 | |
mvn-toolchain-id: JavaSE-21 | |
distribution: 'temurin' | |
cache: maven | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@d6af6abeda15e98926a57b5aa970a96bb37f97d1 # v5 | |
with: | |
maven-version: 3.9.9 | |
- name: Build with Maven | |
run: >- | |
${{ 'xvfb-run' }} | |
mvn clean verify | |
- name: Upload Test Results | |
if: always() | |
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
with: | |
name: test-results | |
if-no-files-found: warn | |
path: | | |
${{ github.workspace }}/**/target/surefire-reports/*.xml | |
${{ github.workspace }}/**/results/**/*.png |