Skip to content

Commit 4ad5707

Browse files
thatnealpatelgopherbot
authored andcommitted
all: bump Go version to 1.26.1
Change-Id: Ibde4a33358d7dc4f30aa679915a2671ee64512b8 Reviewed-on: https://go-review.googlesource.com/c/vulndb/+/752760 Reviewed-by: Michael Pratt <mpratt@google.com> Auto-Submit: Neal Patel <nealpatel@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
1 parent 5feb561 commit 4ad5707

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

cmd/worker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# This Dockerfile expects the build context to be the repo root.
66

77
################################################################
8-
FROM golang:1.26.0 AS builder
8+
FROM golang:1.26.1 AS builder
99
# If you change the Go version above, change the FROM line below as well.
1010

1111
# Set the working directory outside $GOPATH to ensure module mode is enabled.
@@ -28,7 +28,7 @@ COPY . /src
2828
RUN go build -mod=readonly ./cmd/worker
2929

3030
################################################################
31-
FROM golang:1.26.0
31+
FROM golang:1.26.1
3232

3333
LABEL maintainer="Go VulnDB Team <go-vulndb-team@google.com>"
3434

deploy/build.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
steps:
22
- id: Lock
3-
name: golang:1.26.0
3+
name: golang:1.26.1
44
entrypoint: bash
55
args:
66
- -ec
@@ -23,14 +23,14 @@ steps:
2323
fi
2424
2525
- id: Test
26-
name: golang:1.26.0
26+
name: golang:1.26.1
2727
entrypoint: bash
2828
args:
2929
- -ec
3030
- go test -timeout 20m ./...
3131

3232
- id: Govulncheck
33-
name: golang:1.26.0
33+
name: golang:1.26.1
3434
entrypoint: bash
3535
args:
3636
- -ec
@@ -48,12 +48,12 @@ steps:
4848
- gsutil -q -m cp -r gs://go-vulndb /workspace
4949

5050
- id: Generate
51-
name: golang:1.26.0
51+
name: golang:1.26.1
5252
entrypoint: bash
5353
args: ["-ec", "go run ./cmd/gendb -out /workspace/db -zip /workspace/db/vulndb.zip"]
5454

5555
- id: PreValidate
56-
name: golang:1.26.0
56+
name: golang:1.26.1
5757
entrypoint: bash
5858
args:
5959
- -ec
@@ -72,14 +72,14 @@ steps:
7272
- mkdir /workspace/deployed && gsutil -q -m cp -r gs://go-vulndb /workspace/deployed
7373

7474
- id: PostValidate
75-
name: golang:1.26.0
75+
name: golang:1.26.1
7676
entrypoint: bash
7777
args: ["-ec", "go run ./cmd/checkdb /workspace/deployed/go-vulndb"]
7878
env:
7979
- 'GOPROXY=https://proxy.golang.org'
8080

8181
- id: PublishCVEs
82-
name: golang:1.26.0
82+
name: golang:1.26.1
8383
entrypoint: bash
8484
args:
8585
- -ec

deploy/worker.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ substitutions:
1212

1313
steps:
1414
- id: Lock
15-
name: golang:1.26.0
15+
name: golang:1.26.1
1616
entrypoint: bash
1717
args:
1818
- -ec
@@ -25,7 +25,7 @@ steps:
2525
-project $PROJECT_ID -build $BUILD_ID -repo https://go.googlesource.com/vulndb
2626
2727
- id: Test
28-
name: golang:1.26.0
28+
name: golang:1.26.1
2929
entrypoint: bash
3030
args:
3131
- -ec

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module golang.org/x/vulndb
22

3-
go 1.26.0
3+
go 1.26.1
44

55
require (
66
cloud.google.com/go/errorreporting v0.3.0

0 commit comments

Comments
 (0)