Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Harden GitHub actions #77

Merged
merged 1 commit into from
Apr 2, 2024
Merged
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
3 changes: 3 additions & 0 deletions .github/workflows/container-image.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Build container image

permissions:
contents: read

on:
workflow_call:
inputs:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/helm-chart-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# of the `charts` directory.
name: Release helm chart

permissions:
contents: read

on:
push:
branches:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/installer-build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Build installer image, sign it, and generate SBOMs

permissions:
contents: read

on:
workflow_call:
outputs:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/manager-build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Build manager image, sign it, and generate SBOMs

permissions:
contents: read

on:
workflow_call:
outputs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/sbom.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Generate SBOMs

permissions: {}

on:
workflow_call:
inputs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/sign-image.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Sign image

permissions: {}

on:
workflow_call:
inputs:
Expand Down
Loading