Skip to content

Commit 743ba8c

Browse files
authored
feat(ci): dependabot to update go version in docker (#167)
1 parent 0d05cdf commit 743ba8c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ updates:
88
directory: "/"
99
schedule:
1010
interval: "weekly"
11+
- package-ecosystem: "docker"
12+
directory: "/"
13+
schedule:
14+
interval: "weekly"

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# GO_VERSION: go version should match version in go.mod file
2-
FROM golang:1.24 as builder
1+
# GO_VERSION: automatically update to most recent via dependabot
2+
FROM golang:1.24.1 as builder
33
WORKDIR /workspace
44

55
COPY go.mod go.mod

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
module github.com/vladopajic/go-test-coverage/v2
22

3-
// GO_VERSION: when changing go version update version in other places
43
go 1.24
54

65
toolchain go1.24.0

0 commit comments

Comments
 (0)