chore: Bump actions/setup-java from 4.2.2 to 4.4.0 #884
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
if: contains(github.event.head_commit.message, 'Releasing version') != true && contains(github.event.head_commit.message, 'Prepare next version') != true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4.1.7 | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
- name: Set up JDK | |
uses: actions/setup-java@v4.4.0 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
cache: maven | |
- name: Cache Maven packages | |
id: restore-maven-package-cache | |
uses: actions/cache/restore@v4.0.2 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Build with Maven | |
run: mvn -B verify | |
- name: Save downloaded Maven packages | |
uses: actions/cache/save@v4.0.2 | |
with: | |
path: ~/.m2 | |
key: ${{ steps.restore-maven-package-cache.outputs.cache-primary-key }} | |
if: github.event_name != 'pull_request' |