File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed
Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ updates:
2121 - dependency-name : step-security/harden-runner
2222 # # Managed by cisagov/skeleton-aws-lambda-python
2323 # - dependency-name: actions/upload-artifact
24+ # - dependency-name: github/codeql-action
2425 package-ecosystem : github-actions
2526 schedule :
2627 interval : weekly
Original file line number Diff line number Diff line change 44#
55# You may wish to alter this file to override the set of languages analyzed,
66# or to provide custom queries or build logic.
7- name : " CodeQL"
7+ name : CodeQL
88
99on :
1010 push :
2020 - cron : ' 0 14 * * 6'
2121
2222jobs :
23+ diagnostics :
24+ name : Run diagnostics
25+ runs-on : ubuntu-latest
26+ steps :
27+ # Note that a duplicate of this step must be added at the top of
28+ # each job.
29+ - id : harden-runner
30+ name : Harden the runner
31+ uses : step-security/harden-runner@v2
32+ with :
33+ egress-policy : audit
34+ - id : github-status
35+ name : Check GitHub status
36+ uses : crazy-max/ghaction-github-status@v4
37+ - id : dump-context
38+ name : Dump context
39+ uses : crazy-max/ghaction-dump-context@v2
2340 analyze :
2441 name : Analyze
42+ needs :
43+ - diagnostics
2544 runs-on : ubuntu-latest
2645 permissions :
2746 # required for all workflows
3756 # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
3857
3958 steps :
59+ - id : harden-runner
60+ name : Harden the runner
61+ uses : step-security/harden-runner@v2
62+ with :
63+ egress-policy : audit
64+
4065 - name : Checkout repository
4166 uses : actions/checkout@v4
4267
You can’t perform that action at this time.
0 commit comments