-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DISABLE_MAVEN_DEPENDENCY_SUBMISSION variable for build_maven_package.yml
Upgraded build_maven_package workflow to version 1.0.1 As a fix to : advanced-security/maven-dependency-submission-action#65 As 'advanced-security/maven-dependency-submission-action' is an optional step, now it is possible to skip it with a variable (I set it on account level, so all my workflows are affected)
- Loading branch information
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# CI with maven build and scan | ||
# | ||
# version 1.0.0 | ||
# version 1.0.1 | ||
# | ||
# see : https://universe.fugerit.org/src/docs/conventions/workflows/build_maven_package.html | ||
|
||
|
@@ -67,4 +67,6 @@ jobs: | |
|
||
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive | ||
- name: Update dependency graph | ||
uses: advanced-security/[email protected] | ||
# if DISABLE_MAVEN_DEPENDENCY_SUBMISSION is set to true, skip this step | ||
if: ${{ vars.DISABLE_MAVEN_DEPENDENCY_SUBMISSION != 'true' }} | ||
uses: advanced-security/maven-dependency-submission-action@main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters