Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/consumer_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,14 @@ jobs:
matrix:
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overall this seems good.
What I'm missing a bit is some explanation / documentation.
Just inside the PR/Commit body would be fine or so.
Cause it's a bit unclear to me (without reading through all the docs) why this egrees-policy is and what it exactly does (beyond 'monitoring outgoig trafic').

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated the PR description in short

consumer: ["process_description", "score", "module_template"]


steps:
- name: 🛡️ Harden Runner
if: github.repository_owner == 'eclipse-score'
uses: step-security/harden-runner@v2.18.0
with:
egress-policy: audit

- name: Checkout PR
uses: actions/checkout@v4.2.2

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/link_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
link-check:
runs-on: ubuntu-latest
steps:
- name: 🛡️ Harden Runner
if: github.repository_owner == 'eclipse-score'
uses: step-security/harden-runner@v2.18.0
with:
egress-policy: audit
- name: Checkout repo
uses: actions/checkout@v4

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:

- name: 🛡️ Harden Runner
if: github.repository_owner == 'eclipse-score'
uses: step-security/harden-runner@v2.18.0
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@v4.2.2

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: 🛡️ Harden Runner
if: github.repository_owner == 'eclipse-score'
uses: step-security/harden-runner@v2.18.0
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@v4.2.2

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
code:
runs-on: ubuntu-latest
steps:
- name: 🛡️ Harden Runner
if: github.repository_owner == 'eclipse-score'
uses: step-security/harden-runner@v2.18.0
with:
egress-policy: audit
- name: Checkout repository (Handle all events)
uses: actions/checkout@v4.2.2
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test_links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ jobs:
outputs:
should_create_issue: ${{ steps.detect.outputs.issue_needed }}
steps:
- name: 🛡️ Harden Runner
if: github.repository_owner == 'eclipse-score'
uses: step-security/harden-runner@v2.18.0
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@v4.2.2

Expand Down
Loading