Fix go version in Dockerfile (#859)
* Add dockerfile updates and cooldown settings to dependabot * Upgrade Go version in Dockerfile to 1.25.0
This commit is contained in:
43
.github/dependabot.yml
vendored
43
.github/dependabot.yml
vendored
@@ -10,6 +10,8 @@ updates:
|
||||
update-types:
|
||||
- minor
|
||||
- patch
|
||||
cooldown:
|
||||
default-days: 7
|
||||
- package-ecosystem: github-actions
|
||||
open-pull-requests-limit: 5
|
||||
directory: "/"
|
||||
@@ -20,6 +22,8 @@ updates:
|
||||
update-types:
|
||||
- minor
|
||||
- patch
|
||||
cooldown:
|
||||
default-days: 7
|
||||
- package-ecosystem: npm
|
||||
open-pull-requests-limit: 5
|
||||
directory: "/web"
|
||||
@@ -30,6 +34,8 @@ updates:
|
||||
update-types:
|
||||
- minor
|
||||
- patch
|
||||
cooldown:
|
||||
default-days: 7
|
||||
- package-ecosystem: npm
|
||||
open-pull-requests-limit: 5
|
||||
directory: "/docs"
|
||||
@@ -39,4 +45,39 @@ updates:
|
||||
docker-backward-compatible:
|
||||
update-types:
|
||||
- minor
|
||||
- patch
|
||||
- patch
|
||||
cooldown:
|
||||
default-days: 7
|
||||
- package-ecosystem: "docker"
|
||||
directory: "/docs"
|
||||
schedule:
|
||||
interval: "monthly"
|
||||
groups:
|
||||
docker-docs-backward-compatible:
|
||||
update-types:
|
||||
- minor
|
||||
- patch
|
||||
cooldown:
|
||||
default-days: 7
|
||||
- package-ecosystem: "docker"
|
||||
directory: "/search"
|
||||
schedule:
|
||||
interval: "monthly"
|
||||
groups:
|
||||
docker-search-backward-compatible:
|
||||
update-types:
|
||||
- minor
|
||||
- patch
|
||||
cooldown:
|
||||
default-days: 7
|
||||
- package-ecosystem: "docker"
|
||||
directory: "/web"
|
||||
schedule:
|
||||
interval: "monthly"
|
||||
groups:
|
||||
docker-web-backward-compatible:
|
||||
update-types:
|
||||
- minor
|
||||
- patch
|
||||
cooldown:
|
||||
default-days: 7
|
||||
|
||||
@@ -28,7 +28,7 @@ RUN set -eux ; \
|
||||
tar -xJf /tmp/curl.tar.xz -C /tmp ; \
|
||||
chmod +x /tmp/curl ;
|
||||
|
||||
FROM golang:1.24.0@sha256:3f7444391c51a11a039bf0359ee81cc64e663c17d787ad0e637a4de1a3f62a71 AS build
|
||||
FROM golang:1.25.0@sha256:5502b0e56fca23feba76dbc5387ba59c593c02ccc2f0f7355871ea9a0852cebe AS build
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
||||
Reference in New Issue
Block a user