[Snyk] Security upgrade ch.qos.logback:logback-classic from 1.5.12 to 1.5.13 #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow build and test pull requests | |
name: Build Pull Request | |
on: | |
pull_request: | |
branches: | |
- "*" | |
types: [opened, synchronize, reopened] | |
paths: | |
- "**/*.java" # Trigger on any Java file change | |
- "**/*.xml" # Trigger on any xml file change | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
mongodb-version: ["5.0", "6.0", "7.0"] | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: "21" | |
cache: "maven" | |
- name: Build and Test | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
run: | | |
mvn -B clean verify -Dmongodb.version="${{ matrix.mongodb-version }}" |