Skip to content

[Snyk] Security upgrade org.eclipse.jetty:jetty-server from 9.4.19.v20190610 to 9.4.53.v20231009 #64

[Snyk] Security upgrade org.eclipse.jetty:jetty-server from 9.4.19.v20190610 to 9.4.53.v20231009

[Snyk] Security upgrade org.eclipse.jetty:jetty-server from 9.4.19.v20190610 to 9.4.53.v20231009 #64

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java Servlet CI
on:
push:
branches: [ master ]
paths-ignore:
- '**.md'
- '**.json'
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'
- '**.json'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 3
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [ 11 ]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
# Ensure that your code builds, tests pass, and a package can be created
run: mvn --batch-mode --update-snapshots verify