Skip to content

Commit db0aa0e

Browse files
committed
cicd: Remove checkout filter. #TASK-7809
1 parent 588f805 commit db0aa0e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build-java-app-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,14 @@ jobs:
4848
cache_key: ${{ runner.os }}-maven-${{ inputs.hadoop_flavour || vars.HADOOP_FLAVOUR }}-${{ steps.clone_dependencies.outputs.dependencies_sha }}
4949
steps:
5050
- uses: actions/checkout@v4
51+
name: Checkout main repository
5152
id: "checkout-main"
5253
## This checkout pulls the code of the repository where this workflow is being used
5354
with:
5455
fetch-depth: '10'
5556
- uses: actions/checkout@v4
5657
if: ${{ inputs.dependency_repos != '' }}
58+
name: Checkout java-common-libs repository
5759
id: "checkout-java-common-libs"
5860
## This checkout pulls the code of the java-common-libs repository to get the scripts
5961
## Checkout to "java-common-libs" folder.
@@ -62,7 +64,6 @@ jobs:
6264
repository: opencb/java-common-libs
6365
ref: ${{ inputs.java_commons_libs_branch }}
6466
path: java-common-libs
65-
filter: ".github"
6667
fetch-depth: '1'
6768
- name: Set up JDK 8
6869
uses: actions/setup-java@v4

0 commit comments

Comments
 (0)