-
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.
- Loading branch information
Showing
4 changed files
with
92 additions
and
6 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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: nightly-build | ||
|
||
#permissions: {} #TODO: reactivate for non-private | ||
|
||
Check failure Code scanning / checkov Ensure top-level permissions are not set to write-all Error
Ensure top-level permissions are not set to write-all
|
||
on: | ||
schedule: | ||
- cron: "30 1 * * *" | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
ci: | ||
uses: ./.github/workflows/.reusable-ci.yml | ||
# permissions: #TODO: adjust for non-private | ||
secrets: inherit | ||
with: | ||
#TODO: adjust for non private | ||
skip_build: 'none' | ||
skip_compliance_checks: 'all' | ||
skip_unit_tests: 'all' | ||
skip_sast: 'all' | ||
skip_sca: 'none' | ||
skip_docs: 'all' | ||
skip_integration_tests: 'none' | ||
output_type: 'sarif' |
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: nightly | ||
|
||
#permissions: {} #TODO: reactivate for non-private | ||
|
||
Check failure Code scanning / checkov Ensure top-level permissions are not set to write-all Error
Ensure top-level permissions are not set to write-all
|
||
on: | ||
schedule: | ||
- cron: "30 1 * * *" | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/.reusable-build.yml | ||
# permissions: #TODO: reactivate for non-private | ||
# packages: write | ||
secrets: inherit | ||
with: | ||
skip: "non-required" | ||
|
||
compliance: | ||
uses: ./.github/workflows/.reusable-compliance.yml | ||
# permissions: #TODO: reactivate for non-private | ||
# contents: write | ||
# id-token: write | ||
# security-events: write | ||
# actions: read | ||
# checks: read | ||
# deployments: read | ||
# issues: read | ||
# discussions: read | ||
# packages: read | ||
# pages: read | ||
# pull-requests: read | ||
# repository-projects: read | ||
# statuses: read | ||
secrets: inherit | ||
with: | ||
skip: "none" | ||
|
||
sca-released: | ||
name: sca (released) | ||
uses: ./.github/workflows/.reusable-sca.yml | ||
needs: [build] | ||
# permissions: #TODO: reactivate for non-private | ||
# contents: write | ||
# security-events: write | ||
# packages: read | ||
secrets: inherit | ||
with: | ||
image: ${{ needs.build.outputs.original_image }} | ||
skip: "none" | ||
output: "table" | ||
|
||
cleanup-registry: | ||
uses: ./.github/workflows/.reusable-cleanup-registry.yml | ||
needs: [build] | ||
secrets: inherit |
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