Skip to content

Commit ba44fe8

Browse files
committed
dbeaver/dbeaver-devops#1978 add cache-dependency-path input to action.yaml for Java setup
1 parent d8f0bcb commit ba44fe8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

prepare-for-a-maven-lifecycle/action.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ inputs:
88
project-deps:
99
required: false
1010
description: "Path to a file with project dependencies to clone. If not provided, the action will only clone the current repository."
11+
cache-dependency-path:
12+
required: false
13+
description: "See the `cache-dependency-path` input in the `actions/setup-java` action documentation."
14+
default: "**/pom.xml"
1115

1216
runs:
1317
using: "composite"
@@ -33,3 +37,4 @@ runs:
3337
distribution: "temurin"
3438
java-version: "21"
3539
cache: maven
40+
cache-dependency-path: ${{ inputs.cache-dependency-path }}

0 commit comments

Comments
 (0)