fix: specify gotestsum version in workflows for consistency

This commit is contained in:
GitHub Actions
2026-03-23 05:32:52 +00:00
parent 73aecc60e8
commit f13d95df0f
3 changed files with 28 additions and 2 deletions
+26
View File
@@ -130,6 +130,32 @@
"datasourceTemplate": "go",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"description": "Track gotestsum version in codecov workflow",
"managerFilePatterns": [
"/^\\.github/workflows/codecov-upload\\.yml$/"
],
"matchStrings": [
"gotestsum@v(?<currentValue>[^\\s]+)"
],
"depNameTemplate": "gotest.tools/gotestsum",
"datasourceTemplate": "go",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"description": "Track gotestsum version in quality checks workflow",
"managerFilePatterns": [
"/^\\.github/workflows/quality-checks\\.yml$/"
],
"matchStrings": [
"gotestsum@v(?<currentValue>[^\\s]+)"
],
"depNameTemplate": "gotest.tools/gotestsum",
"datasourceTemplate": "go",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"description": "Track govulncheck version in scripts",
+1 -1
View File
@@ -127,7 +127,7 @@ jobs:
} >> "$GITHUB_ENV"
- name: Install gotestsum
run: go install gotest.tools/gotestsum@latest
run: go install gotest.tools/gotestsum@v1.13.0
- name: Run Go tests with coverage
working-directory: ${{ github.workspace }}
+1 -1
View File
@@ -149,7 +149,7 @@ jobs:
bash "scripts/repo_health_check.sh"
- name: Install gotestsum
run: go install gotest.tools/gotestsum@latest
run: go install gotest.tools/gotestsum@v1.13.0
- name: Run Go tests
id: go-tests