Skip to content

chore(deps): update actions/cache action to v4.2.0 #387

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

chore(deps): update actions/cache action to v4.2.0 #387

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 'Cache Local Maven Repository'
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
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@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
with:
distribution: 'temurin'
java-version: |
11
- name: Build
run: mvn -B clean package