[Snyk] Upgrade org.slf4j:slf4j-api from 2.0.7 to 2.0.15 #117
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 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: | |
push: | |
branches: [ develop, feature/, master ] | |
pull_request: | |
branches: [ develop, feature/, master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 19 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '19' | |
distribution: 'zulu' | |
cache: maven | |
- name: Build Maven with Xvfb | |
run: | | |
sudo apt-get install xvfb | |
export DISPLAY=":1" | |
export AUDIODEV=null | |
xvfb-run :1 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
mvn -B package --file pom.xml | |
env: | |
DISPLAY: :1 | |