From d7e20596120563fc78b076c40dabad9558272db4 Mon Sep 17 00:00:00 2001 From: Nikita Akilov <26031301+n5a5@users.noreply.github.com> Date: Mon, 7 Jul 2025 23:29:51 +0200 Subject: [PATCH] dbeaver/dbeaver-devops#1978 add cache-dependency-path input to action.yaml for Java setup --- prepare-for-a-maven-lifecycle/action.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/prepare-for-a-maven-lifecycle/action.yaml b/prepare-for-a-maven-lifecycle/action.yaml index b6cae5f..6c651d0 100644 --- a/prepare-for-a-maven-lifecycle/action.yaml +++ b/prepare-for-a-maven-lifecycle/action.yaml @@ -8,6 +8,10 @@ inputs: project-deps: required: false description: "Path to a file with project dependencies to clone. If not provided, the action will only clone the current repository." + cache-dependency-path: + required: false + description: "See the `cache-dependency-path` input in the `actions/setup-java` action documentation." + default: "**/pom.xml" runs: using: "composite" @@ -33,3 +37,4 @@ runs: distribution: "temurin" java-version: "21" cache: maven + cache-dependency-path: ${{ inputs.cache-dependency-path }}