This is an automated email from the ASF dual-hosted git repository.

gitgabrio pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-kogito-apps.git


The following commit(s) were added to refs/heads/main by this push:
     new 320f58ca6 [incubator-kie-issues#2259] Dumping dependency trees to 
different file (#2304)
320f58ca6 is described below

commit 320f58ca6758cdb9cc40e4e003c174afdfb4a4d0
Author: Gabriele Cardosi <[email protected]>
AuthorDate: Mon Feb 23 15:48:27 2026 +0100

    [incubator-kie-issues#2259] Dumping dependency trees to different file 
(#2304)
    
    * [no_issue_dependency_trees] Dumping dependency trees to different file
    
    * [no_issue_dependency_trees] Fix usage of variable in dependency tree name
    
    * [no_issue_dependency_trees] Fix usage of variable in dependency tree name
    
    * [no_issue_dependency_trees] Fix artifact name
    
    * [no_issue_dependency_trees] Apply PR suggestion
    
    ---------
    
    Co-authored-by: Gabriele-Cardosi <[email protected]>
---
 .github/workflows/pr-downstream.yml  | 10 +++++++++-
 .github/workflows/pr-kogito-apps.yml |  8 ++++++++
 2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/pr-downstream.yml 
b/.github/workflows/pr-downstream.yml
index 1758b40ae..91fd1ec9b 100644
--- a/.github/workflows/pr-downstream.yml
+++ b/.github/workflows/pr-downstream.yml
@@ -56,6 +56,8 @@ jobs:
       fail-fast: false
     runs-on: ${{ matrix.os }}
     name: ${{ matrix.job_name }} (${{ matrix.os }} / Java-${{ 
matrix.java-version }} / Maven-${{ matrix.maven-version }})
+    env:
+      DEPENDENCY_TREE_FILE: 'mvn_dependency_tree_${{ matrix.job_name }}_${{ 
matrix.os }}.txt'
     steps:
       - name: Clean Disk Space
         uses: 
apache/incubator-kie-kogito-pipelines/.ci/actions/ubuntu-disk-space@main
@@ -82,4 +84,10 @@ jobs:
         uses: 
apache/incubator-kie-kogito-pipelines/.ci/actions/surefire-report@main
         if: ${{ always() }}
         with:
-          report_paths: '**/*-reports/TEST-*.xml'
\ No newline at end of file
+          report_paths: '**/*-reports/TEST-*.xml'
+      - name: Upload Dependency Trees
+        uses: actions/upload-artifact@v4
+        if: ${{ always() }}
+        with:
+          name: dependency-trees-logs_${{ matrix.job_name }}_${{ matrix.os }}
+          path: '**/${{ env.DEPENDENCY_TREE_FILE }}'
\ No newline at end of file
diff --git a/.github/workflows/pr-kogito-apps.yml 
b/.github/workflows/pr-kogito-apps.yml
index fe160423b..64260c69e 100644
--- a/.github/workflows/pr-kogito-apps.yml
+++ b/.github/workflows/pr-kogito-apps.yml
@@ -45,6 +45,8 @@ jobs:
       fail-fast: false
     runs-on: ${{ matrix.os }}
     name: ${{ matrix.os }} / Java-${{ matrix.java-version }} / Maven-${{ 
matrix.maven-version }}
+    env:
+      DEPENDENCY_TREE_FILE: 'mvn_dependency_tree_kogito-apps_${{ matrix.os 
}}.txt'
     steps:
       - name: Clean Disk Space
         uses: 
apache/incubator-kie-kogito-pipelines/.ci/actions/ubuntu-disk-space@main
@@ -72,3 +74,9 @@ jobs:
         if: ${{ always() }}
         with:
           report_paths: '**/*-reports/TEST-*.xml'
+      - name: Upload Dependency Trees
+        uses: actions/upload-artifact@v4
+        if: ${{ always() }}
+        with:
+          name: dependency-trees-logs_kogito-apps_${{ matrix.os }}
+          path: '**/${{ env.DEPENDENCY_TREE_FILE }}'
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to