ci: derive Go version from go.mod instead of 'stable' #397

Merged
argoyle merged 3 commits from fix/ci-go-version-from-gomod into main 2026-08-17 08:24:31 +00:00
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: 'stable'
go-version-file: go.mod
- name: Run tests
run: go test -race -coverprofile=coverage.txt ./...
@@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version: 'stable'
go-version-file: go.mod
- name: Check vulnerabilities
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
+1 -1
View File
@@ -1,4 +1,4 @@
FROM amd64/golang:1.26.5@sha256:e8ab809ec169291532860acdcd50d5b43a9fcea3c4f381226c5cdc4254ad8ecc as build
FROM amd64/golang:1.26.6@sha256:9262b44222fad4e87aacd26b766bc1d9dddb7ea7b1bcad03bdce0f9c7f87f2bd as build
WORKDIR /build
ENV CGO_ENABLED=0
ADD . /build
+1 -1
View File
@@ -2,7 +2,7 @@ module gitlab.com/unboundsoftware/cron-checker
go 1.26.0
toolchain go1.26.5
toolchain go1.26.6
require (
github.com/alecthomas/kingpin/v2 v2.4.0