Skip to content

Commit 8ae24ac

Browse files
[StepSecurity] ci: Harden GitHub Actions (#17767)
## Summary This pull request is created by [StepSecurity](https://app.stepsecurity.io/securerepo) at the request of @lukeheath. Please merge the Pull Request to incorporate the requested changes. Please tag @lukeheath on your message if you have any questions related to the PR. ## Security Fixes ### Least Privileged GitHub Actions Token Permissions The GITHUB_TOKEN is an automatically generated secret to make authenticated calls to the GitHub API. GitHub recommends setting minimum token permissions for the GITHUB_TOKEN. - [GitHub Security Guide](https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow) - [The Open Source Security Foundation (OpenSSF) Security Guide](https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions) ### Pinned Dependencies GitHub Action tags and Docker tags are mutable. This poses a security risk. GitHub's Security Hardening guide recommends pinning actions to full length commit. - [GitHub Security Guide](https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-third-party-actions) - [The Open Source Security Foundation (OpenSSF) Security Guide](https://github.com/ossf/scorecard/blob/main/docs/checks.md#pinned-dependencies) ## Feedback For bug reports, feature requests, and general feedback; please email [email protected]. To create such PRs, please visit https://app.stepsecurity.io/securerepo. Signed-off-by: StepSecurity Bot <[email protected]> Signed-off-by: StepSecurity Bot <[email protected]>
1 parent 43432f0 commit 8ae24ac

3 files changed

+10
-2
lines changed

.github/workflows/deploy-vulnerability-dashboard.yml

+5
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@ on:
66
paths:
77
- 'ee/vulnerability-dashboard/**'
88

9+
permissions:
10+
contents: read
11+
912
jobs:
1013
build:
14+
permissions:
15+
contents: write # for Git to git push
1116
if: ${{ github.repository == 'fleetdm/fleet' }}
1217

1318
runs-on: ubuntu-latest

.github/workflows/dogfood-gitops.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout our repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2727

2828
- name: Checkout GitOps repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
3030
with:
3131
repository: fleetdm/fleet-gitops
3232
ref: main

.github/workflows/test-vulnerability-dashboard-changes.yml

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ concurrency:
99
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id}}
1010
cancel-in-progress: true
1111

12+
permissions:
13+
contents: read
14+
1215
jobs:
1316
build:
1417
permissions:

0 commit comments

Comments
 (0)