8000 [chore]: upgrade go version for ci by stone1100 · Pull Request #998 · lindb/lindb · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[chore]: upgrade go version for ci #998

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 15 additions & 24 deletions .github/pr-title-checker-config.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,17 @@
{
"LABEL":{
"name":"PR title needs formatting",
"color":"B60205"
},
"CHECKS":{
"prefixes":[
"[bug]:",
"[feat]:",
"[refactor]:",
"[chore]:",
"[docs]:",
"[enhance]:",
"[ci]:",
"[opt]:"
],
"ignoreLabels":[
"ignore-title"
]
},
"MESSAGES":{
"success":"All OK",
"failure":"Failing CI test",
"notice":""
}
"LABEL": {
"name": "PR title needs formatting",
"color": "B60205"
},
"CHECKS": {
"regexp": "^\\[(feat|bug|opt|enhance|fix|test|refactor|chore|style|docs|perf|build|ci|revert)(:#\\d+)?\\]\\!?:.*",
"ignoreLabels": [
"ignore-title"
]
},
"MESSAGES": {
"success": "All OK",
"failure": "Failing CI test",
"notice": ""
}
}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
id: go
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: 1.21
cache: true
- name: Build cross platform binaries
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY Makefile Makefile
RUN make build-frontend

# Build the manager binary
FROM golang:1.19 as go_builder
FROM golang:1.21 as go_builder
ARG TARGETOS
ARG TARGETARCH
ARG LD_FLAGS
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-gh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.19 as go_builder
FROM golang:1.21 as go_builder
ARG TARGETOS
ARG TARGETARCH
ARG LD_FLAGS
Expand Down
0