Skip to content

Bump maven-surefire-plugin.version from 3.5.2 to 3.5.3 #316

Bump maven-surefire-plugin.version from 3.5.2 to 3.5.3

Bump maven-surefire-plugin.version from 3.5.2 to 3.5.3 #316

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Java CI with Maven
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
# To cancel a currently running workflow from the same PR, branch, or tag
# when a new workflow is triggered.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up JDK 23
uses: actions/setup-java@v4 # https://github.com/actions/setup-java
with:
java-version: '23'
distribution: 'temurin'
cache: maven
- name: Print Java version
run: java -version
- name: Verify and Package with Maven
run: ./mvnw --batch-mode --file pom.xml verify package