Skip to content

build(deps): Bump actions/checkout from 4.1.6 to 4.1.7 #402

build(deps): Bump actions/checkout from 4.1.6 to 4.1.7

build(deps): Bump actions/checkout from 4.1.6 to 4.1.7 #402

Workflow file for this run

# 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.7
- name: Set up JDK
uses: actions/setup-java@v4.2.1
with:
java-version: 19
distribution: 'temurin'
- name: Cache Maven packages
uses: actions/cache@v3.3.3
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