Skip to content

Bump com.fasterxml.jackson.core:jackson-databind from 2.21.1 to 2.21.5 in /src/it/jakarta-jlink #101

Bump com.fasterxml.jackson.core:jackson-databind from 2.21.1 to 2.21.5 in /src/it/jakarta-jlink

Bump com.fasterxml.jackson.core:jackson-databind from 2.21.1 to 2.21.5 in /src/it/jakarta-jlink #101

Workflow file for this run

name: Test
permissions: { }
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0
with:
java-version: 17
distribution: 'temurin'
- name: Cache and restore Maven packages on master
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
if: ${{ github.ref_name == 'master' }}
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Restore Maven packages on PR
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
if: ${{ github.ref_name != 'master' }}
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and Test
run: ./mvnw clean verify -P integration-test