Skip to content

Update actions/checkout digest to de0fac2 #23

Update actions/checkout digest to de0fac2

Update actions/checkout digest to de0fac2 #23

Workflow file for this run

name: Test Java
permissions: { }
on:
pull_request:
branches:
- main
push:
branches:
- main
- renovate/**
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
version: [ 17, 21 ]
name: 'Build Java ${{ matrix.version }} - ${{ matrix.os }}'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
with:
distribution: 'temurin'
java-version: ${{ matrix.version }}
cache: 'maven'
- name: Maven Test
run: ./mvnw test