We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4fe777f + 2e30384 commit 508324dCopy full SHA for 508324d
.github/workflows/codeql-analysis.yml
@@ -20,8 +20,27 @@ on:
20
- cron: '0 2 * * 6'
21
22
jobs:
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@v3
37
+ - id: dump-context
38
+ name: Dump context
39
+ uses: crazy-max/ghaction-dump-context@v2
40
analyze:
41
name: Analyze
42
+ needs:
43
+ - diagnostics
44
runs-on: ubuntu-latest
45
permissions:
46
# required for all workflows
0 commit comments