Skip to content

Bump actions/setup-java from 5.4.0 to 5.5.0 #62

Bump actions/setup-java from 5.4.0 to 5.5.0

Bump actions/setup-java from 5.4.0 to 5.5.0 #62

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Setup up JDK
uses: actions/setup-java@v5.5.0
with:
java-version: 25
cache: 'maven'
distribution: 'temurin'
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
run: mvn -B verify