Skip to content

Commit

Permalink
fix: bump go build version to 1.22.7 (Azure#919)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiying-lin authored Sep 26, 2024
1 parent 5d8917e commit a8c5a2e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
paths-ignore: [docs/**, "**.md", "**.mdx", "**.png", "**.jpg"]

env:
GO_VERSION: '1.22.4'
GO_VERSION: '1.22.7'

jobs:
detect-noop:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

env:
# Common versions
GO_VERSION: '1.22.4'
GO_VERSION: '1.22.7'

jobs:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
MEMBER_AGENT_IMAGE_NAME: member-agent
REFRESH_TOKEN_IMAGE_NAME: refresh-token

GO_VERSION: '1.22.4'
GO_VERSION: '1.22.7'

jobs:
export-registry:
Expand Down
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
run:
deadline: 10m
go: '1.22.4'
go: '1.22.7'

linters:
disable-all: true
Expand Down
2 changes: 1 addition & 1 deletion docker/hub-agent.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the hubagent binary
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.22.4 AS builder
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.22.7 AS builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
2 changes: 1 addition & 1 deletion docker/member-agent.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the memberagent binary
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.22.4 AS builder
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.22.7 AS builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
2 changes: 1 addition & 1 deletion docker/refresh-token.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the hubagent binary
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.22.4 AS builder
FROM mcr.microsoft.com/oss/go/microsoft/golang:1.22.7 AS builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down

0 comments on commit a8c5a2e

Please sign in to comment.