Skip to content

Commit d1bf19a

Browse files
committed
update necessary files
1 parent cbfd468 commit d1bf19a

File tree

9 files changed

+9
-10
lines changed

9 files changed

+9
-10
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

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: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module go.goms.io/fleet
22

3-
go 1.22.12
4-
toolchain go1.23.7
3+
go 1.23.1
54

65
require (
76
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0

0 commit comments

Comments
 (0)