Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

chore(deps): update actions/setup-java action to v4 #180

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

chore(deps): update actions/setup-java action to v4 #180

Workflow file for this run

name: Build Java PR
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Set up JDK 17
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml