Skip to content

Commit

Permalink
Update go.mod to use v1.23 (#1141)
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerwins authored Feb 5, 2025
1 parent 2ba679b commit 75f85c7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/base-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Check out code
uses: actions/checkout@v4

- name: Set up Go 1.21
- name: Set up Go 1.23
uses: actions/setup-go@v4
with:
go-version: 1.21
go-version: 1.23

- name: Use docker buildx
run: docker buildx create --use
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- '**/.gitignore'

env:
GO_VERSION: '1.21'
GO_VERSION: '1.23'

jobs:
ci-target-check:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Stage 1: build binary
# Start from the latest golang base image
FROM golang:1.21 AS builder
FROM golang:1.23 AS builder

# Add Maintainer Info
LABEL maintainer="hackerwins <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/yorkie-team/yorkie

go 1.21
go 1.23

require (
connectrpc.com/connect v1.12.0
Expand Down

0 comments on commit 75f85c7

Please sign in to comment.