Skip to content

Commit

Permalink
ci: apply the Golang version detection approach to all files
Browse files Browse the repository at this point in the history
  • Loading branch information
MShekow committed Jul 31, 2024
1 parent 74c15f4 commit 8752ac4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
# renovate: datasource=golang-version depName=go versioning=semver
go-version: "1.21.11"

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/coverage-badge-for-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
# renovate: datasource=golang-version depName=go versioning=semver
go-version: "1.21.11"

- name: Run Test
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release-security-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
# renovate: datasource=golang-version depName=go versioning=semver
go-version: "1.21.11"
if: steps.scan_latest_release.outcome == 'failure'

- name: Verify dependencies
Expand Down

0 comments on commit 8752ac4

Please sign in to comment.