Skip to content

[deps]: Update actions/setup-java action to v5 #455

[deps]: Update actions/setup-java action to v5

[deps]: Update actions/setup-java action to v5 #455

Workflow file for this run

name: Build & Test
on:
push:
branches:
- main
- development
pull_request:
branches:
- main
jobs:
build-maven:
name: Build
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
steps:
- name: Check out repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Set up JDK 1.8
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0
with:
java-version: '8'
distribution: 'temurin'
- name: Build and Test
run: mvn --batch-mode package