Skip to content

[Snyk] Security upgrade io.undertow:undertow-core from 2.3.12.Final to 2.3.13.Final #49

[Snyk] Security upgrade io.undertow:undertow-core from 2.3.12.Final to 2.3.13.Final

[Snyk] Security upgrade io.undertow:undertow-core from 2.3.12.Final to 2.3.13.Final #49

Workflow file for this run

# This workflow build and test pull requests
name: Build pull request
on:
pull_request:
branches:
- "*"
types: [opened, synchronize, reopened]
jobs:
build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- mongodb-version: 4.2
- mongodb-version: 4.4
- mongodb-version: 5.0
- mongodb-version: 6.0
deploy: true
- mongodb-version: 7.0
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "17"
- name: Build and Test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
run: MAVEN_OPTS="--add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED" mvn -B verify -Dmongodb.version="${{ matrix.mongodb-version }}" -Dkarate.options="${{ matrix.karate-options }}"