Skip to content

build(deps): bump com.fasterxml.jackson.core:jackson-databind from 2.14.2 to 2.21.0 #130

build(deps): bump com.fasterxml.jackson.core:jackson-databind from 2.14.2 to 2.21.0

build(deps): bump com.fasterxml.jackson.core:jackson-databind from 2.14.2 to 2.21.0 #130

Workflow file for this run

name: Publish Test Coverage Report
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
publish-code-coverage-report:
name: JAVA
runs-on: ubuntu-latest
if: "! contains(toJSON(github.event.head_commit.message), 'skip ci')"
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Build and Run Tests with Coverage
run: mvn test
- name: SonarQube Scan
if: ${{ github.actor != 'dependabot[bot]' }}
uses: SonarSource/sonarqube-scan-action@v6.0.0
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}