-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dev #31
Dev #31
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: nightly-build | ||
|
||
#permissions: {} #TODO: reactivate for non-private | ||
|
||
Comment on lines
+3
to
+4
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' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: nightly | ||
Check failure Code scanning / Scorecard Token-Permissions High
score is 0: no topLevel permission defined
Remediation tip: Visit https://app.stepsecurity.io/secureworkflow. Tick the 'Restrict permissions for GITHUB_TOKEN' Untick other options NOTE: If you want to resolve multiple issues at once, you can visit https://app.stepsecurity.io/securerepo instead. Click Remediation section below for further remediation help |
||
|
||
#permissions: {} #TODO: reactivate for non-private | ||
|
||
Comment on lines
+3
to
+4
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 |
Check failure
Code scanning / Scorecard
Token-Permissions High