-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix incompatibe frontend cmd opts and upgrade go version (#117)
* fix: modify frontend cmd options(related PR: GreptimeTeam/greptimedb#2609) Signed-off-by: zyy17 <[email protected]> * ci: upgrade go version from 1.18 to 1.21 * test: bump golangci-lint version from 1.50.1 to 1.54.2 --------- Signed-off-by: zyy17 <[email protected]>
- Loading branch information
Showing
6 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,9 @@ on: | |
tags: | ||
- "v*.*.*" | ||
|
||
env: | ||
GO_VERSION: "1.21" | ||
|
||
jobs: | ||
docker: | ||
name: Build and push image | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.18 as builder | ||
FROM golang:1.21 as builder | ||
|
||
ENV LANG en_US.utf8 | ||
WORKDIR /greptimedb-operator | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.18 as builder | ||
FROM golang:1.21 as builder | ||
|
||
ENV LANG en_US.utf8 | ||
WORKDIR /greptimedb-operator | ||
|