Skip to content

Update actions/checkout action to v4 #494

Update actions/checkout action to v4

Update actions/checkout action to v4 #494

Workflow file for this run

name: Java CI
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.4
- name: Set up JDK 16
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 16
cache: 'maven'
- name: Build with Maven
run: mvn package --file pom.xml