Skip to content

Commit 4536e00

Browse files
authored
chore(ci): update GitHub Actions to use pinned hashes (#8)
* Update GitHub Actions in .github/workflows/check-typos.yaml to use pinned hashes * Update GitHub Actions in .github/workflows/lint-golangci.yaml to use pinned hashes * Update GitHub Actions in .github/workflows/verify-holesky.yaml to use pinned hashes * Update GitHub Actions in .github/workflows/verify-mainnet.yaml to use pinned hashes * Update GitHub Actions in .github/workflows/verify-sepolia.yaml to use pinned hashes
1 parent 9f39b6a commit 4536e00

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/check-typos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Actions Repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1818
- name: Spell Check Repo
1919
uses: crate-ci/typos@685eb3d55be2f85191e8c84acb9f44d7756f84ab #v1.29.4

.github/workflows/lint-golangci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
name: lint
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/setup-go@v4
18+
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4
1919
with:
2020
go-version: '1.22'
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2222
- name: golangci-lint
23-
uses: golangci/golangci-lint-action@v4
23+
uses: golangci/golangci-lint-action@d6238b002a20823d52840fda27e2d4891c5952dc # v4
2424
with:
2525
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
2626
version: v1.56

.github/workflows/verify-holesky.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1414

1515
- name: Run script
1616
run: ./.hack/verify.sh holesky

.github/workflows/verify-mainnet.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1414

1515
- name: Run script
1616
run: ./.hack/verify.sh mainnet

.github/workflows/verify-sepolia.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1414

1515
- name: Run script
1616
run: ./.hack/verify.sh sepolia

0 commit comments

Comments
 (0)