File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -13,9 +13,12 @@ updates:
13
13
# - dependency-name: actions/checkout
14
14
# - dependency-name: actions/setup-go
15
15
# - dependency-name: actions/setup-python
16
+ # - dependency-name: crazy-max/ghaction-dump-context
16
17
# - dependency-name: crazy-max/ghaction-github-labeler
18
+ # - dependency-name: crazy-max/ghaction-github-status
17
19
# - dependency-name: hashicorp/setup-terraform
18
20
# - dependency-name: mxschmitt/action-tmate
21
+ # - dependency-name: step-security/harden-runner
19
22
package-ecosystem : github-actions
20
23
schedule :
21
24
interval : weekly
Original file line number Diff line number Diff line change 14
14
RUN_TMATE : ${{ secrets.RUN_TMATE }}
15
15
16
16
jobs :
17
+ diagnostics :
18
+ name : Run diagnostics
19
+ runs-on : ubuntu-latest
20
+ steps :
21
+ # Note that a duplicate of this step must be added at the top of
22
+ # each job.
23
+ - id : harden-runner
24
+ name : Harden the runner
25
+ uses : step-security/harden-runner@v2
26
+ with :
27
+ egress-policy : audit
28
+ - id : github-status
29
+ name : Check GitHub status
30
+ uses : crazy-max/ghaction-github-status@v3
31
+ - id : dump-context
32
+ name : Dump context
33
+ uses : crazy-max/ghaction-dump-context@v2
17
34
lint :
35
+ needs :
36
+ - diagnostics
18
37
runs-on : ubuntu-latest
19
38
steps :
39
+ - id : harden-runner
40
+ name : Harden the runner
41
+ uses : step-security/harden-runner@v2
42
+ with :
43
+ egress-policy : audit
20
44
- id : setup-env
21
45
uses : cisagov/setup-env-github-action@develop
22
46
- uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments