Skip to content

Bump actions/checkout from 4.0.0 to 4.1.7 #281

Bump actions/checkout from 4.0.0 to 4.1.7

Bump actions/checkout from 4.0.0 to 4.1.7 #281

Workflow file for this run

name: Build against JDKs
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17', '21', '23' ]
architecture: [ 'x64' ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4.1.7
- name: Setup JDK
uses: actions/setup-java@v3.10.0
with:
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
distribution: "temurin"
- name: Build with Maven
run: mvn package