Skip to content

Commit 0ca1811

Browse files
committed
ci: github: Add workflow to ensure all GH actions are pinned
This commit introduces a new workflow that checks for SHA-pinned GitHub Actions on pull requests. Signed-off-by: Benjamin Cabé <[email protected]>
1 parent a117d12 commit 0ca1811

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Check SHA-pinned GitHub Actions
2+
3+
on:
4+
pull_request:
5+
types:
6+
- edited
7+
- opened
8+
- reopened
9+
- synchronize
10+
paths:
11+
- '.github/workflows/**'
12+
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
check-sha-pinned-actions:
18+
name: Verify GitHub Actions
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout code
22+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
- name: Ensure SHA pinned actions
24+
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@25ed13d0628a1601b4b44048e63cc4328ed03633 # v3.0.22

0 commit comments

Comments
 (0)