Skip to content

90412 vulnerabilities 2024 11 #461

90412 vulnerabilities 2024 11

90412 vulnerabilities 2024 11 #461

Workflow file for this run

name: ci-pull-request
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/cache@v4
env:
cache-name: m2
with:
path: ~/.m2/repository
key: ${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ env.cache-name }}-
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
- name: mvn package
run: mvn --batch-mode package