Skip to content

Commit ae8b2b2

Browse files
committed
chore: harded the builds
1 parent ee8b575 commit ae8b2b2

File tree

14 files changed

+50
-121
lines changed

14 files changed

+50
-121
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,19 @@ updates:
3838
- "*"
3939
applies-to: "security-updates"
4040

41-
- package-ecosystem: docker
42-
directory: /
41+
- package-ecosystem: "docker"
42+
directory: "/"
4343
schedule:
44-
interval: daily
44+
interval: "weekly"
45+
commit-message:
46+
prefix: "chore(deps):"
47+
open-pull-requests-limit: 10
48+
groups:
49+
actions-version-updates:
50+
patterns:
51+
- "*"
52+
applies-to: "version-updates"
53+
actions-security-updates:
54+
patterns:
55+
- "*"
56+
applies-to: "security-updates"

.github/workflows/codeql.yml

Lines changed: 0 additions & 78 deletions
This file was deleted.

.github/workflows/commitlint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ permissions:
1313
jobs:
1414
lint-commits:
1515
permissions:
16-
contents: read # for actions/checkout to fetch code
17-
pull-requests: read # for wagoid/commitlint-github-action to get commits in PR
16+
contents: read
17+
pull-requests: read
1818
runs-on: ubuntu-latest
1919
name: Validate Commits
2020

2121
steps:
22-
- name: Harden the runner (Audit all outbound calls)
22+
- name: Harden Runner
2323
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
2424
with:
2525
egress-policy: audit

.github/workflows/depcheck.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Dependency Review
2+
3+
on:
4+
pull_request:
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
dependency-review:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Harden Runner
14+
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
15+
with:
16+
egress-policy: audit
17+
18+
- name: Checkout code
19+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20+
21+
- name: Review Dependencies
22+
uses: actions/dependency-review-action@da24556b548a50705dd671f47852072ea4c105d9 # v4.7.1

.github/workflows/dependency-review.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Build Container
2020

2121
steps:
22-
- name: Harden the runner (Audit all outbound calls)
22+
- name: Harden Runner
2323
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
2424
with:
2525
egress-policy: audit

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424

2525
steps:
26-
- name: Harden the runner (Audit all outbound calls)
26+
- name: Harden Runner
2727
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
2828
with:
2929
egress-policy: audit

.github/workflows/linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ permissions:
2121
jobs:
2222
lint-format:
2323
permissions:
24-
contents: write # for stefanzweifel/git-auto-commit-action to push code in repo
24+
contents: write
2525
runs-on: ubuntu-latest
2626
name: Reformat Code
2727

2828
steps:
29-
- name: Harden the runner (Audit all outbound calls)
29+
- name: Harden Runner
3030
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
3131
with:
3232
egress-policy: audit

.github/workflows/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- build-docker
8383
if: ${{ success() }}
8484
steps:
85-
- name: Harden the runner (Audit all outbound calls)
85+
- name: Harden Runner
8686
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
8787
with:
8888
egress-policy: audit

.github/workflows/qodana.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
name: Inspect Code
2929

3030
steps:
31-
- name: Harden the runner (Audit all outbound calls)
31+
- name: Harden Runner
3232
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
3333
with:
3434
egress-policy: audit

0 commit comments

Comments
 (0)