Skip to content

[Snyk] Security upgrade com.graphql-java:graphql-java from 21.3 to 21.5 #56

[Snyk] Security upgrade com.graphql-java:graphql-java from 21.3 to 21.5

[Snyk] Security upgrade com.graphql-java:graphql-java from 21.3 to 21.5 #56

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:
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- mongodb-version: "5.0"
- mongodb-version: "6.0"
- mongodb-version: "7.0"
deploy: true
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "21"
- 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 clean verify -Dmongodb.version="${{ matrix.mongodb-version }}" -Dkarate.options="${{ matrix.karate-options }}"