Skip to content

[Snyk] Upgrade ch.qos.logback:logback-classic from 1.2.13 to 1.5.7 #75

[Snyk] Upgrade ch.qos.logback:logback-classic from 1.2.13 to 1.5.7

[Snyk] Upgrade ch.qos.logback:logback-classic from 1.2.13 to 1.5.7 #75

Workflow file for this run

name: Build & Test
on:
pull_request:
types:
- opened
- edited
- synchronize
- labeled
- unlabeled
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
preflight:
runs-on: ubuntu-latest
steps:
- uses: thehanimo/pr-title-checker@v1.4.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pass_on_octokit_error: false
configuration_path: .github/pr-title-checker-config.json
build:
name: Build & Test
runs-on: ubuntu-latest
needs: preflight
steps:
- uses: actions/checkout@v4
- name: Set up Maven Central Repository
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'zulu'
cache: 'maven'
- name: Biuld Package
run: mvn clean compile
- name: Run Tests
run: mvn test
- name: Checkstyle
run: mvn verify -DskipTests=true