Skip to content
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

chore(build): upgrade Go to 1.20.10 #6063

Merged
merged 3 commits into from
Oct 13, 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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ workflows:
jobs:
build:
environment:
DOCKER_TAG: chronograf-20230503
DOCKER_TAG: chronograf-20231013
GO111MODULE: "ON"
machine:
image: ubuntu-2004:202201-02
Expand All @@ -96,7 +96,7 @@ jobs:

deploy-nightly:
environment:
DOCKER_TAG: chronograf-20230503
DOCKER_TAG: chronograf-20231013
GO111MODULE: "ON"
machine:
image: ubuntu-2004:202201-02
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:

deploy-pre-release:
environment:
DOCKER_TAG: chronograf-20230503
DOCKER_TAG: chronograf-20231013
GO111MODULE: "ON"
machine:
image: ubuntu-2004:202201-02
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:

deploy-release:
environment:
DOCKER_TAG: chronograf-20230503
DOCKER_TAG: chronograf-20231013
GO111MODULE: "ON"
machine:
image: ubuntu-2004:202201-02
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chronograf-cypress-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.20.4'
go-version: '1.20.10'

- uses: actions/setup-node@v2
with:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
1. [#6056](https://github.com/influxdata/chronograf/pull/6056): Fix error on typing colon
2. [#6060](https://github.com/influxdata/chronograf/pull/6060): Fix time interval in `Processor_Queue_Length` query

### Other

1. [#6063](https://github.com/influxdata/chronograf/pull/6063): Upgrade golang to 1.20.10

## v1.10.1

### Features
Expand Down
2 changes: 1 addition & 1 deletion etc/Dockerfile_build
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \

# Install go
ENV GOPATH /root/go
ENV GO_VERSION 1.20.4
ENV GO_VERSION 1.20.10
ENV GO_ARCH amd64
ENV GO111MODULES ON
RUN wget https://golang.org/dl/go${GO_VERSION}.linux-${GO_ARCH}.tar.gz; \
Expand Down
2 changes: 1 addition & 1 deletion etc/scripts/docker/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test -z $SSH_KEY_PATH && SSH_KEY_PATH="$HOME/.ssh/id_rsa"
echo "Using SSH key located at: $SSH_KEY_PATH"

# Default docker tag if not specified
test -z "$DOCKER_TAG" && DOCKER_TAG="chronograf-20230503"
test -z "$DOCKER_TAG" && DOCKER_TAG="chronograf-20231013"

docker run \
-e AWS_ACCESS_KEY_ID \
Expand Down
Loading