Skip to content

[Snyk] Upgrade: org.slf4j:slf4j-api, org.slf4j:slf4j-simple #121

[Snyk] Upgrade: org.slf4j:slf4j-api, org.slf4j:slf4j-simple

[Snyk] Upgrade: org.slf4j:slf4j-api, org.slf4j:slf4j-simple #121

Workflow file for this run

# 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