Skip to content

Commit a0f3ad6

Browse files
feat: pin workflow action sha (#90)
Co-authored-by: William Woodruff <[email protected]>
1 parent f41f692 commit a0f3ad6

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

Diff for: .github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1414
with:
1515
persist-credentials: false
1616

@@ -23,7 +23,7 @@ jobs:
2323
test:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2727
with:
2828
persist-credentials: false
2929

Diff for: .github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1313
with:
1414
persist-credentials: false
1515

Diff for: .github/workflows/site.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,26 @@ jobs:
2626

2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
3030
with:
3131
persist-credentials: false
3232

3333
- name: Install the latest version of uv
34-
uses: astral-sh/setup-uv@v3
34+
uses: astral-sh/setup-uv@3b9817b1bf26186f03ab8277bab9b827ea5cc254 # v3
3535

3636
- name: build site
3737
run: make site
3838

3939
- name: Setup Pages
4040
if: github.repository_owner == 'woodruffw'
41-
uses: actions/configure-pages@v5
41+
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
4242

4343
- name: Upload artifact
44-
uses: actions/upload-pages-artifact@v3
44+
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3
4545
with:
4646
path: site_html
4747

4848
- name: Deploy to GitHub Pages
4949
if: github.repository_owner == 'woodruffw'
5050
id: deployment
51-
uses: actions/deploy-pages@v4
51+
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4

Diff for: .github/workflows/zizmor.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ jobs:
1515
security-events: write
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1919
with:
2020
persist-credentials: false
2121
- name: Setup Rust
22-
uses: actions-rust-lang/setup-rust-toolchain@v1
22+
uses: actions-rust-lang/setup-rust-toolchain@11df97af8e8102fd60b60a77dfbf58d40cd843b8 # v1
2323
- name: Get zizmor
2424
run: cargo install zizmor
2525
- name: Run zizmor 🌈
2626
run: zizmor --format sarif . > results.sarif
2727
env:
2828
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
- name: Upload SARIF file
30-
uses: github/codeql-action/upload-sarif@v3
30+
uses: github/codeql-action/upload-sarif@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
3131
with:
3232
sarif_file: results.sarif
3333
category: zizmor

0 commit comments

Comments
 (0)