chore(deps): Bump com.fasterxml.jackson.jr:jackson-jr-objects from 2.17.2 to 2.18.1 #502
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
name: CI build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.2.2 | |
- name: Set up JDK | |
uses: actions/setup-java@v4.5.0 | |
with: | |
java-version: 11 | |
distribution: 'adopt' | |
check-latest: true | |
- name: Set up cache for ~./m2/repository | |
uses: actions/cache@v4.1.2 | |
with: | |
path: ~/.m2/repository | |
key: pit-stryker-dashboard-reporter-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
pit-stryker-dashboard-reporter | |
- name: Build and test code | |
run: mvn -B verify --no-transfer-progress |