fix release missing hidden file issues (#801) #415
This file contains 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: Check GitHub workflows | |
# See https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-third-party-actions | |
on: | |
push: | |
paths: | |
- ".github/workflows/**" | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
paths: | |
- ".github/workflows/**" | |
jobs: | |
enforce_pinned_workflows: | |
name: Enforce pinned workflows | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Ensure 3rd party workflows have SHA pinned | |
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@21991cec25093947ff3f62e4c223df0260c39944 # v2.1.2 |