Skip to content

Bump actions/setup-java from 4.2.2 to 4.3.0 #186

Bump actions/setup-java from 4.2.2 to 4.3.0

Bump actions/setup-java from 4.2.2 to 4.3.0 #186

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
name: Java ${{ matrix.java }}
strategy:
fail-fast: false
matrix:
java: [11, 17]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/[email protected]
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B -V -T1C clean package --file pom.xml