-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from Ontotext-AD/GDB-11403-Add-DNS-waiting-co…
…ndition Added DNS Wait condition and fixed Resource Lock
- Loading branch information
Showing
5 changed files
with
127 additions
and
21 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 |
---|---|---|
|
@@ -38,16 +38,25 @@ jobs: | |
name: Run Terraform validate check | ||
run: terraform validate | ||
|
||
- id: install_latest_trivy_version | ||
uses: aquasecurity/[email protected] | ||
with: | ||
cache: true | ||
version: v0.58.1 | ||
|
||
- id: run_trivy_config | ||
name: Run Trivy vulnerability scanner | ||
# aquasecurity/[email protected] | ||
uses: aquasecurity/trivy-action@91713af97dc80187565512baba96e4364e983601 | ||
uses: aquasecurity/[email protected] | ||
with: | ||
scan-type: config | ||
trivy-config: trivy.yaml | ||
ignore-unfixed: true | ||
hide-progress: false | ||
format: sarif | ||
output: trivy.sarif | ||
# TODO Remove this when fix is available for the error regarding the | ||
# unknown state of some of the resources during plan phase | ||
continue-on-error: true # Allows the job to continue even if this step fails | ||
|
||
- id: run_sarif_upload | ||
name: Upload Trivy SARIF results | ||
|
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
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
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
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