Skip to content

Bump the dependency-updates group across 1 directory with 3 updates #185

Bump the dependency-updates group across 1 directory with 3 updates

Bump the dependency-updates group across 1 directory with 3 updates #185

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: Java CI with Maven
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up the JDK
uses: actions/setup-java@v4
with:
java-version: '22'
distribution: 'temurin'
server-id: github
cache: 'maven'
- name: Configure Problem Matchers
run: |
echo "::add-matcher::.github/problem-matcher.json"
echo "::remove-matcher owner=java::"
- name: Build with Maven
run: mvn -B package
- name: Upload test report
uses: actions/upload-artifact@v4
if: always()
with:
name: test report ${{ github.job }}
path: |
**/surefire-reports/TEST-*.xml
retention-days: 5