Skip to content

Bump org.slf4j:slf4j-simple from 2.0.12 to 2.0.13 #5468

Bump org.slf4j:slf4j-simple from 2.0.12 to 2.0.13

Bump org.slf4j:slf4j-simple from 2.0.12 to 2.0.13 #5468

Workflow file for this run

# This workflow will build a Java project with Gradle for verification purposes
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build Verification
on:
push:
branches:
- main
- develop
- feature*
- release*
pull_request:
branches:
- main
- develop
- feature*
- release*
merge_group:
branches:
- develop
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: "21"
- name: spotlessCheck
run: ./gradlew spotlessCheck
build:
name: ${{ matrix.os }} w/JDK ${{ matrix.java }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
java: [ '21' ]
distribution: [ 'temurin']
fail-fast: false
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
- name: Cache Gradle
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
#- name: Junit Report to Annotations
# uses: ashley-taylor/[email protected]
- name: Build with Gradle
uses: GabrielBB/[email protected]
with:
run: ./gradlew build --no-daemon