diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9c79fe2..517088c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: 1.23.3 # golang-version:golang/go + go-version: 1.23.3 # golang-version:go check-latest: true - name: Lint diff --git a/renovate.json b/renovate.json index 00d1dbe..1aca2fa 100644 --- a/renovate.json +++ b/renovate.json @@ -6,15 +6,23 @@ "enabledManagers": ["regex", "dockerfile", "github-actions", "gomod"], "regexManagers": [ { + "description": "Update tool versions in Makefile", "fileMatch": [ - "^Makefile$", - "^.github/workflows/.*\\.yml$" + "^Makefile$" ], "matchStrings": [ - ".*_VERSION \\??= (?.*?) # (?.*?):(?.*?)\\n", - ".*go-version: (?.*?) # (?.*?):(?.*?)\\n" + ".*_VERSION \\??= (?.*?) # (?.*?):(?.*?)\\n" ], "versioningTemplate": "semver" + }, + { + "description": "Update go-version in GitHub Actions", + "fileMatch": [ + "\\.github/workflows/.*\\.yml$" + ], + "matchStrings": [ + ".*go-version: (?.*?) # (?.*?):(?.*?)\\n" + ] } ] }