Skip to content

chore(deps): update actions/setup-java action to v4.3.0 #350

chore(deps): update actions/setup-java action to v4.3.0

chore(deps): update actions/setup-java action to v4.3.0 #350

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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
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@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0
with:
distribution: 'temurin'
java-version: |
11
- name: Build
run: mvn -B clean package