Skip to content

build(deps): Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.0 to 3.5.1 #1186

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

build(deps): Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.0 to 3.5.1 #1186

Workflow file for this run

name: Java Code Format
permissions: {}
on:
push:
branches: ["main"]
pull_request:
branches: ["main", "release-*"]
concurrency:
group: java-format-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
format:
strategy:
matrix:
os: [ ubuntu-22.04 ]
java: [ "11" ]
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: Verify code format with Maven
run: mvn --batch-mode --no-transfer-progress --errors com.spotify.fmt:fmt-maven-plugin:check
- name: Verify licenses with Maven
run: mvn --batch-mode --no-transfer-progress --errors license:check