Skip to content

Bump org.junit.jupiter:junit-jupiter from 5.11.3 to 5.11.4 #792

Bump org.junit.jupiter:junit-jupiter from 5.11.3 to 5.11.4

Bump org.junit.jupiter:junit-jupiter from 5.11.3 to 5.11.4 #792

Workflow file for this run

name: Build
on:
schedule:
- cron: "15 0 * * *"
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
env:
MAVEN_CLI_OPTS: "--batch-mode --no-transfer-progress --errors --fail-at-end --show-version"
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
cache: 'maven'
- name: Build with Maven
run: >
./mvnw $MAVEN_CLI_OPTS
clean verify