Skip to content

Bump org.apache.logging.log4j:log4j-core from 2.23.1 to 2.24.2 #1193

Bump org.apache.logging.log4j:log4j-core from 2.23.1 to 2.24.2

Bump org.apache.logging.log4j:log4j-core from 2.23.1 to 2.24.2 #1193

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/[email protected]
with:
distribution: 'adopt'
java-version: 11
cache: 'gradle'
- name: print Java version
run: java -version
- name: Cache Gradle packages
uses: actions/[email protected]
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Build
run: ./gradlew build --info --stacktrace