Skip to content

Bump actions/checkout from 4.1.1 to 4.1.5 #1784

Bump actions/checkout from 4.1.1 to 4.1.5

Bump actions/checkout from 4.1.1 to 4.1.5 #1784

Workflow file for this run

name: Maven CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest ]
java-version: [ 8 ]
distro: [ 'zulu', 'temurin' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.5
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
distribution: ${{ matrix.distro }}
java-version: ${{ matrix.java-version }}
- name: Build with Maven
run: mvn package --file pom.xml