chore(deps): bump aws-actions/closed-issue-message from 8b6324312193476beecf11f8e8539d73a3553bf4 to 80edfc24bdf1283400eb04d20a8a605ae8bf7d48 #1807
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lockdown untrusted workflows | |
# PROCESS | |
# | |
# 1. Scans for any external GitHub Action being used without version pinning (@<commit-sha> vs @v3) | |
# 2. Scans for insecure practices for inline bash scripts (shellcheck) | |
# 3. Fail CI and prevent PRs to be merged if any malpractice is found | |
# USAGE | |
# | |
# Always triggered on new PR, PR changes and PR merge. | |
on: | |
push: | |
paths: | |
- ".github/workflows/**" | |
pull_request: | |
paths: | |
- ".github/workflows/**" | |
permissions: | |
contents: read | |
jobs: | |
enforce_pinned_workflows: | |
name: Harden Security | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read # checkout code and subsequently GitHub action workflows | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Ensure 3rd party workflows have SHA pinned | |
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@b88cd0aad2c36a63e42c71f81cb1958fed95ac87 # v3.0.10 | |
with: | |
allowlist: | | |
slsa-framework/slsa-github-generator | |
aws-powertools/actions |