Skip to content

Bump actions/cache from 3.3.2 to 4.0.1 #24

Bump actions/cache from 3.3.2 to 4.0.1

Bump actions/cache from 3.3.2 to 4.0.1 #24

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Cache Maven packages
uses: actions/cache@v4.0.1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze
run: |
mvn -B clean verify --file pom.xml
- name: Generate documentation
run: mvn javadoc:aggregate