Skip to content

Bump com.fasterxml.jackson.core:jackson-databind from 2.16.1 to 2.16.2 #127

Bump com.fasterxml.jackson.core:jackson-databind from 2.16.1 to 2.16.2

Bump com.fasterxml.jackson.core:jackson-databind from 2.16.1 to 2.16.2 #127

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- run: mvn -version
- run: ./mvnw -U test -Dgithub_token=${{ secrets.GH_TOKEN_REPO }} -Dserver_start_timeout=15 -DfailIfNoTests
- uses: codecov/codecov-action@v1