Skip to content

Commit 166e5db

Browse files
dependabot[bot]britaniar
authored andcommitted
chore: bump golang.org/x/net from 0.33.0 to 0.36.0
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.33.0 to 0.36.0. - [Commits](golang/net@v0.33.0...v0.36.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f444686 commit 166e5db

File tree

11 files changed

+28
-28
lines changed

11 files changed

+28
-28
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
paths-ignore: [docs/**, "**.md", "**.mdx", "**.png", "**.jpg"]
1414

1515
env:
16-
GO_VERSION: '1.22.12'
16+
GO_VERSION: '1.23.1'
1717

1818
jobs:
1919
detect-noop:

.github/workflows/code-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
env:
1616
# Common versions
17-
GO_VERSION: '1.22.12'
17+
GO_VERSION: '1.23.1'
1818

1919
jobs:
2020

.github/workflows/trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818
MEMBER_AGENT_IMAGE_NAME: member-agent
1919
REFRESH_TOKEN_IMAGE_NAME: refresh-token
2020

21-
GO_VERSION: '1.22.12'
21+
GO_VERSION: '1.23.1'
2222

2323
jobs:
2424
export-registry:

.github/workflows/upgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
paths-ignore: [docs/**, "**.md", "**.mdx", "**.png", "**.jpg"]
2121

2222
env:
23-
GO_VERSION: '1.22.12'
23+
GO_VERSION: '1.23.1'
2424

2525
jobs:
2626
detect-noop:

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
run:
22
deadline: 10m
3-
go: '1.22.12'
3+
go: '1.23.1'
44

55
linters:
66
disable-all: true

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ GOIMPORTS_VER := latest
3939
GOIMPORTS_BIN := goimports
4040
GOIMPORTS := $(abspath $(TOOLS_BIN_DIR)/$(GOIMPORTS_BIN)-$(GOIMPORTS_VER))
4141

42-
GOLANGCI_LINT_VER := v1.52.2
42+
GOLANGCI_LINT_VER := v1.64.7
4343
GOLANGCI_LINT_BIN := golangci-lint
4444
GOLANGCI_LINT := $(abspath $(TOOLS_BIN_DIR)/$(GOLANGCI_LINT_BIN)-$(GOLANGCI_LINT_VER))
4545

docker/hub-agent.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the hubagent binary
2-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.22.12 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.1 AS builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

docker/member-agent.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the memberagent binary
2-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.22.12 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.1 AS builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

docker/refresh-token.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the hubagent binary
2-
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.22.12 AS builder
2+
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.23.1 AS builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.goms.io/fleet
22

3-
go 1.22.12
3+
go 1.23.1
44

55
require (
66
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0
@@ -23,7 +23,7 @@ require (
2323
go.uber.org/atomic v1.11.0
2424
go.uber.org/zap v1.27.0
2525
golang.org/x/exp v0.0.0-20241004190924-225e2abe05e6
26-
golang.org/x/sync v0.10.0
26+
golang.org/x/sync v0.11.0
2727
golang.org/x/time v0.7.0
2828
k8s.io/api v0.31.1
2929
k8s.io/apiextensions-apiserver v0.31.1
@@ -113,12 +113,12 @@ require (
113113
go.opentelemetry.io/otel v1.31.0 // indirect
114114
go.opentelemetry.io/otel/metric v1.31.0 // indirect
115115
go.uber.org/multierr v1.11.0 // indirect
116-
golang.org/x/crypto v0.31.0 // indirect
117-
golang.org/x/net v0.33.0 // indirect
116+
golang.org/x/crypto v0.35.0 // indirect
117+
golang.org/x/net v0.36.0 // indirect
118118
golang.org/x/oauth2 v0.23.0 // indirect
119-
golang.org/x/sys v0.28.0 // indirect
120-
golang.org/x/term v0.27.0 // indirect
121-
golang.org/x/text v0.21.0 // indirect
119+
golang.org/x/sys v0.30.0 // indirect
120+
golang.org/x/term v0.29.0 // indirect
121+
golang.org/x/text v0.22.0 // indirect
122122
golang.org/x/tools v0.28.0 // indirect
123123
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
124124
google.golang.org/protobuf v1.35.1 // indirect

0 commit comments

Comments
 (0)