Skip to content

Bump com.fasterxml.jackson.core:jackson-databind from 2.18.6 to 2.22.0 #107

Bump com.fasterxml.jackson.core:jackson-databind from 2.18.6 to 2.22.0

Bump com.fasterxml.jackson.core:jackson-databind from 2.18.6 to 2.22.0 #107

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: OLCUT CI (Windows x86_64, Java SE 17, 21, 25)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions: {}
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
# test against supported LTS versions and latest
java: [ 21, 25 ]
name: OLCUT - Windows Java SE ${{ matrix.java }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Setup Java Development Kits built by Oracle
uses: oracle-actions/setup-java@fff43251af9936a0e6a4d5d0946e14f1680e9b6b # v1.5.0
with:
release: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml
build-17:
runs-on: windows-latest
name: OLCUT - Windows Java SE 17
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Setup Oracle Java SE
uses: oracle-actions/setup-java@fff43251af9936a0e6a4d5d0946e14f1680e9b6b # v1.5.0
with:
website: oracle.com
release: 17
version: 17.0.12
- name: Build with Java 17
run: mvn -B package --file pom.xml