File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -68,3 +68,17 @@ updates:
68
68
update-types :
69
69
- " version-update:semver-major"
70
70
- " version-update:semver-minor"
71
+ - package-ecosystem : " docker"
72
+ directory : " /webapp/web"
73
+ schedule :
74
+ interval : " weekly"
75
+ # Searchcache Docker image should ignore major and minor updates to Docker Go Image
76
+ # Searchcache follows the bring-your-own-container paradigm because it uses
77
+ # App Engine Flex. While we could use the latest version, we want this Go
78
+ # version to follow the same version used in the webapp above (which uses
79
+ # App Engine Standard).
80
+ ignore :
81
+ - dependency-name : " *"
82
+ update-types :
83
+ - " version-update:semver-major"
84
+ - " version-update:semver-minor"
Original file line number Diff line number Diff line change 1
1
# Production deployment spec for the webapp.
2
2
3
- FROM golang:1.24.3 -bookworm as builder
3
+ FROM golang:1.24.4 -bookworm as builder
4
4
5
5
RUN apt-get update
6
6
RUN apt-get install -qy --no-install-suggests git sudo
You can’t perform that action at this time.
0 commit comments