Skip to content

Commit 4f7483f

Browse files
committed
update to use git hashes instead of @v5 style.
(with comments on what the hash is representing
1 parent 55902bd commit 4f7483f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/golangci-lint.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@ jobs:
1515
name: lint
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
19-
- uses: actions/setup-go@v5
18+
# 4.2.2 release checkout@v4
19+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
20+
# 5.4.0 release setup-go@v5
21+
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b
2022
with:
2123
go-version: stable
2224
- name: golangci-lint
23-
uses: golangci/golangci-lint-action@v7
25+
# 7.0.0 release golangcui-lint-action@v7
26+
uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd
2427
with:
2528
version: v2.0

0 commit comments

Comments
 (0)