Skip to content

fix(deps): update all dependencies j:cdx-227 #1092

fix(deps): update all dependencies j:cdx-227

fix(deps): update all dependencies j:cdx-227 #1092

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Build
on:
push:
branches: [ main ]
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@b09bb98e06d4d774595224525879c09bc6e98c40 # v2.20.1
with:
egress-policy: audit
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
- name: Set up JDK 11
uses: actions/setup-java@cf277c60eb25467037889841efdb72551f06f6c3 # v4.9.1
with:
java-version: '11'
distribution: 'adopt'
- name: Validate code format
run: mvn spotless:check
- name: Build with Maven
run: mvn -B package --file pom.xml