Skip to content

Bump actions/setup-java from 4.6.0 to 4.7.0 #484

Bump actions/setup-java from 4.6.0 to 4.7.0

Bump actions/setup-java from 4.6.0 to 4.7.0 #484

Workflow file for this run

name: Build
on:
push:
branches:
- "master"
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- 'README*'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up JDK 17
uses: actions/[email protected]
with:
distribution: temurin
java-version: 17
- name: Cache local Maven repository
uses: actions/[email protected]
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B formatter:validate verify --file pom.xml