Skip to content

Bump org.slf4j:slf4j-api from 1.7.36 to 2.0.0 #1407

Bump org.slf4j:slf4j-api from 1.7.36 to 2.0.0

Bump org.slf4j:slf4j-api from 1.7.36 to 2.0.0 #1407

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Test on secondary OSes (Windows, Mac)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest]
steps:
- uses: actions/checkout@v6
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: 17
distribution: temurin
- name: Cache Maven packages
uses: actions/cache@v5.0.4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B package