Skip to content

chore(deps): update actions/cache action to v4.1.1 #370

chore(deps): update actions/cache action to v4.1.1

chore(deps): update actions/cache action to v4.1.1 #370

Workflow file for this run

name: Antlr 4 Param Visitor
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: 'Checkout sourcecode'
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: 'Cache Local Maven Repository'
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: 'Setup: Install JDK 11'
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0
with:
distribution: 'temurin'
java-version: |
11
- name: Build
run: mvn -B clean package