Skip to content

ci: bump the github-actions group with 2 updates (#40) #83

ci: bump the github-actions group with 2 updates (#40)

ci: bump the github-actions group with 2 updates (#40) #83

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@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up Java
uses: actions/setup-java@ad2b38190b15e4d6bdf0c97fb4fca8412226d287 # v5.3.0
with:
java-version: "23"
distribution: "temurin"
- name: Build with Maven
run: mvn -B clean package