Skip to content
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
5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,10 @@ updates:
- "/.github/actions/*"
schedule:
interval: weekly
cooldown:
# Wait this many days before opening an update PR for a freshly
# published release, so a compromised release has time to be caught
# and yanked before it is auto-adopted (zizmor dependabot-cooldown).
default-days: 7
# Dependabot updates both tag-pinned and SHA-pinned action
# references. PRs from Dependabot follow normal review.
17 changes: 17 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,3 +188,20 @@ jobs:
printf 'Version: %s\n' "$VERSION"
printf 'Date: %s\n' "$RELEASE_DATE"
printf '%s\n' "$NOTES"

workflow-security:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-nix
- name: Audit workflows with zizmor
env:
GH_TOKEN: ${{ github.token }}
run: nix run .#zizmor -- .github/
- name: Verify action pins and version comments with pinact
env:
GITHUB_TOKEN: ${{ github.token }}
run: nix run .#pinact -- run --check
Loading