Skip to content

ci: bump actions/setup-java from 5.4.0 to 5.5.0 in the github-actions group #87

ci: bump actions/setup-java from 5.4.0 to 5.5.0 in the github-actions group

ci: bump actions/setup-java from 5.4.0 to 5.5.0 in the github-actions group #87

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- main
permissions: {}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Cache local Maven repository
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up Java
uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0
with:
java-version: "23"
distribution: "temurin"
- name: Build with Maven
run: mvn -B clean package