Skip to content

build(deps): Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.1 to 3.2.2 #571

build(deps): Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.1 to 3.2.2

build(deps): Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.1 to 3.2.2 #571

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@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0
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@a8a3f3ad30e3422c9c7b888a15615d19a852ae32
with:
name: maven-build-java-${{ matrix.java }}
path: target/
if-no-files-found: error
retention-days: 5