Skip to content

Commit 9afa7d7

Browse files
committed
chore(all): update all
1 parent 1e0ce96 commit 9afa7d7

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@master
1414
- uses: actions/setup-go@v5
1515
with:
16-
go-version: 1.23
16+
go-version: 1.25
1717
- run: git config --global init.defaultBranch main # TODO remove later as git updates to a newer version
1818
- run: go mod download
1919
- name: Set up git
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/checkout@master
3636
- uses: actions/setup-go@v5
3737
with:
38-
go-version: 1.23
38+
go-version: 1.25
3939
- run: go mod download
4040
working-directory: ./cmd/redirector
4141
- name: Validate formatting with go fmt

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23-alpine AS build
1+
FROM golang:1.25-alpine AS build
22
RUN apk add --no-cache git
33
WORKDIR /src
44
COPY go.mod go.sum ./

cmd/redirector/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ module redirector
22

33
go 1.12
44

5-
require github.com/pkg/errors v0.8.1
5+
require github.com/pkg/errors v0.9.1

cmd/redirector/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=
2-
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
1+
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
2+
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ module github.com/GoogleCloudPlatform/cloud-run-button
22

33
go 1.23.0
44

5-
toolchain go1.24.1
5+
toolchain go1.25.5
66

77
require (
8-
cloud.google.com/go/artifactregistry v1.16.3
9-
cloud.google.com/go/compute/metadata v0.6.0
8+
cloud.google.com/go/artifactregistry v1.18.0
9+
cloud.google.com/go/compute/metadata v0.9.0
1010
github.com/AlecAivazis/survey/v2 v2.3.7
1111
github.com/briandowns/spinner v1.23.2
1212
github.com/fatih/color v1.18.0
1313
google.golang.org/api v0.228.0
14-
google.golang.org/grpc v1.71.0
14+
google.golang.org/grpc v1.77.0
1515
)
1616

1717
require (

0 commit comments

Comments
 (0)