Skip to content

cache & inherited workflows #4

cache & inherited workflows

cache & inherited workflows #4

Workflow file for this run

name: JDK Setup
on:
workflow_call:
jobs:
jdk_setup:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK 17
with:
distribution: 'corretto'
java-version: '17'
cache: 'gradle'
- name: Verify JDK Installation
run: java -version