Skip to content

fix(deps): Bump jackson_version from 2.17.1 to 2.17.2 #2040

fix(deps): Bump jackson_version from 2.17.1 to 2.17.2

fix(deps): Bump jackson_version from 2.17.1 to 2.17.2 #2040

Workflow file for this run

---
name: Gradle build
on:
push:
branches:
- main
pull_request:
branches:
- main
pull_request_target:
branches:
- main
permissions:
contents: read
jobs:
build:
name: Gradle build
# If the PR is coming from a fork (pull_request_target), ensure it's opened by "dependabot[bot]".
# Otherwise, clone it normally.
if: |
(github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]') ||
(github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]')
runs-on: ubuntu-22.04
steps:
- name: Checkout
if: ${{ github.event_name != 'pull_request_target' }}
uses: actions/checkout@v4.1.7
with:
fetch-depth: 0
- name: Checkout
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v4.1.7
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up JDK
uses: actions/setup-java@v4.2.1
with:
java-version-file: .java-version
distribution: 'temurin'
- name: Setup Gradle Gradle
uses: gradle/actions/setup-gradle@v3.4.2
- name: Build with Gradle
run: ./gradlew build