Skip to content

Bump com.fasterxml.jackson.core:jackson-databind from 2.20.0 to 2.20.1 in the java-production-dependencies group across 1 directory #32

Bump com.fasterxml.jackson.core:jackson-databind from 2.20.0 to 2.20.1 in the java-production-dependencies group across 1 directory

Bump com.fasterxml.jackson.core:jackson-databind from 2.20.0 to 2.20.1 in the java-production-dependencies group across 1 directory #32

Workflow file for this run

name: Pull Request
on:
pull_request:
env:
JAVA_DIST: 'temurin'
JAVA_VERSION: 25
defaults:
run:
shell: bash
jobs:
test:
name: Compile and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-java@v5
with:
distribution: ${{ env.JAVA_DIST }}
java-version: ${{ env.JAVA_VERSION }}
cache: 'maven'
- name: Build and Test
id: buildAndTest
run: mvn -B clean verify