Skip to content

Commit 14b1ffa

Browse files
chore: bump golang.org/x/net from 0.33.0 to 0.36.0 (#1078)
* 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> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Britania Rodriguez Reyes <britaniar@microsoft.com>
1 parent 6ea0208 commit 14b1ffa

File tree

24 files changed

+97
-85
lines changed

24 files changed

+97
-85
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.0'
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.0'
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.0'
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.0'
2424

2525
jobs:
2626
detect-noop:

.golangci.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
run:
2-
deadline: 10m
3-
go: '1.22.12'
2+
timeout: 15m
3+
go: '1.23.0'
4+
5+
linters-settings:
6+
stylecheck:
7+
checks: [ "all", "-ST1001" ] # Disables dot-import warnings
8+
revive:
9+
rules:
10+
- name: dot-imports
11+
disabled: true
12+
gosec:
13+
excludes:
14+
- G404 #Use of weak random number generator (math/rand or math/rand/v2). It is only used in tests.
415

516
linters:
617
disable-all: true

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ CONTROLLER_GEN_VER := v0.16.0
3131
CONTROLLER_GEN_BIN := controller-gen
3232
CONTROLLER_GEN := $(abspath $(TOOLS_BIN_DIR)/$(CONTROLLER_GEN_BIN)-$(CONTROLLER_GEN_VER))
3333

34-
STATICCHECK_VER := 2023.1.7
34+
STATICCHECK_VER := 2024.1
3535
STATICCHECK_BIN := staticcheck
3636
STATICCHECK := $(abspath $(TOOLS_BIN_DIR)/$(STATICCHECK_BIN)-$(STATICCHECK_VER))
3737

3838
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.0 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.0 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.0 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.0
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)