Skip to content

build(deps-dev): Bump org.junit.jupiter:junit-jupiter from 5.11.0 to 5.11.2 #1675

build(deps-dev): Bump org.junit.jupiter:junit-jupiter from 5.11.0 to 5.11.2

build(deps-dev): Bump org.junit.jupiter:junit-jupiter from 5.11.0 to 5.11.2 #1675

Workflow file for this run

name: Java Build
permissions: {}
on:
push:
branches: ["main"]
pull_request:
branches: ["main", "release-*"]
schedule:
# daily at 1:30 UTC
- cron: '30 1 * * *'
concurrency:
group: java-build-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os: [ ubuntu-22.04 ]
java: [ "11", "17" ]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build JAR Artifacts and verify coverage
run: mvn --batch-mode --no-transfer-progress --errors --update-snapshots clean package -Drevision=$(git describe --tags --always)
- name: Upload Artifacts
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874
with:
name: maven-build-java-${{ matrix.java }}
path: target/
if-no-files-found: error
retention-days: 5