Skip to content

Bump org.slf4j:slf4j-simple from 2.0.9 to 2.0.11 #47

Bump org.slf4j:slf4j-simple from 2.0.9 to 2.0.11

Bump org.slf4j:slf4j-simple from 2.0.9 to 2.0.11 #47

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven on Ubuntu
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '06 11 * * 1'
permissions:
pull-requests: read
jobs:
ci:
name: Continuous Integration
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Java JDK
uses: actions/setup-java@v3
with:
java-version: 21
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: https://sonarcloud.io
run: mvn --batch-mode --no-transfer-progress package