From 5720d3ca7d231f6c51ccdf65cdf232d4d4ec45ca Mon Sep 17 00:00:00 2001 From: Ville Vesilehto Date: Mon, 25 Aug 2025 23:08:04 +0300 Subject: [PATCH] chore(ci): pin workflow dependencies (#7471) CI workflows which reference "faillint" were missing a version pin. Signed-off-by: Ville Vesilehto --- .github/workflows/go.coverage.yml | 2 +- .github/workflows/go.test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.coverage.yml b/.github/workflows/go.coverage.yml index f2ad53622..174b93e38 100644 --- a/.github/workflows/go.coverage.yml +++ b/.github/workflows/go.coverage.yml @@ -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 diff --git a/.github/workflows/go.test.yml b/.github/workflows/go.test.yml index c0f5581d7..06b965695 100644 --- a/.github/workflows/go.test.yml +++ b/.github/workflows/go.test.yml @@ -72,7 +72,7 @@ jobs: - name: Test run: | - go install github.com/fatih/faillint@latest + go install github.com/fatih/faillint@c56e3ec6dbfc933bbeb884fd31f2bcd41f712657 # v1.15.0 ( cd test; go test -race ./... ) test-makefile-release: