chore(ci): pin workflow dependencies (#7471)

CI workflows which reference "faillint" were missing a version pin.

Signed-off-by: Ville Vesilehto <ville@vesilehto.fi>
This commit is contained in:
Ville Vesilehto
2025-08-25 23:08:04 +03:00
committed by GitHub
parent 2f981ff797
commit 5720d3ca7d
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ jobs:
- name: Test With Coverage
run: |
go install github.com/fatih/faillint@latest
go install github.com/fatih/faillint@c56e3ec6dbfc933bbeb884fd31f2bcd41f712657 # v1.15.0
for d in request core coremain plugin test; do \
( cd $d; go test -coverprofile=cover.out -covermode=atomic -race ./...; [ -f cover.out ] && cat cover.out >> ../coverage.txt ); \
done