Skip to content

build(deps): Bump org.slf4j:slf4j-jdk14 from 2.0.11 to 2.0.13 #390

build(deps): Bump org.slf4j:slf4j-jdk14 from 2.0.11 to 2.0.13

build(deps): Bump org.slf4j:slf4j-jdk14 from 2.0.11 to 2.0.13 #390

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:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Download repository
uses: actions/checkout@v4.1.2
- name: Set up JDK
uses: actions/setup-java@v4.2.1
with:
java-version: 19
distribution: 'temurin'
- name: Cache Maven packages
uses: actions/cache@v3.3.3
env:
cache-name: cache-mvn-temu-19
with:
path: ~/.m2/repository
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Test with Maven
run: mvn -B test --file pom.xml