You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/02/10 09:31:32 UTC

[camel-kamelets] branch main updated: Use Maven not mvnd in action for SBOM Generation

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

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


The following commit(s) were added to refs/heads/main by this push:
     new b11debd7 Use Maven not mvnd in action for SBOM Generation
b11debd7 is described below

commit b11debd77f8f0f60d2dd370f1ada2deef7fcc52e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Feb 10 10:31:11 2023 +0100

    Use Maven not mvnd in action for SBOM Generation
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .github/workflows/generate-sbom-main.yml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/.github/workflows/generate-sbom-main.yml b/.github/workflows/generate-sbom-main.yml
index d88d91ce..7b07ac8b 100644
--- a/.github/workflows/generate-sbom-main.yml
+++ b/.github/workflows/generate-sbom-main.yml
@@ -38,8 +38,6 @@ jobs:
       - uses: actions/checkout@v3
         with:
           persist-credentials: false
-      - id: install-mvnd
-        uses: ./.github/actions/install-mvnd
       - name: Set up JDK ${{ matrix.java }}
         uses: actions/setup-java@v3
         with:
@@ -47,7 +45,7 @@ jobs:
           java-version: ${{ matrix.java }}
           cache: 'maven'
       - name: mvn build and sbom generation
-        run: ${{ steps.install-mvnd.outputs.mvnd-dir }}/mvnd -l build.log -Dmvnd.threads=2 -V -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 --no-transfer-progress -e -Psbom -DskipTests verify
+        run: mvn -l build.log -Dmvnd.threads=2 -V -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 --no-transfer-progress -e -Psbom -DskipTests verify
       - name: archive logs
         uses: actions/upload-artifact@v3
         if: always()