build(deps): Bump actions/cache from 3.3.3 to 4.0.2 #382
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download repository | |
uses: actions/checkout@v4.1.2 | |
- name: Set up JDK | |
uses: actions/setup-java@v4.2.1 | |
with: | |
java-version: 19 | |
distribution: 'temurin' | |
- name: Cache Maven packages | |
uses: actions/cache@v4.0.2 | |
env: | |
cache-name: cache-mvn-temu-19 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Test with Maven | |
run: mvn -B test --file pom.xml |