Skip to content

Commit

Permalink
chore(build): upgrade Go to 1.21.9 (#6090)
Browse files Browse the repository at this point in the history
  • Loading branch information
alespour committed Apr 16, 2024
1 parent 5b91d11 commit d2049db
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Expand Up @@ -72,7 +72,7 @@ workflows:
jobs:
build:
environment:
DOCKER_TAG: chronograf-20240320
DOCKER_TAG: chronograf-20240416
GO111MODULE: "ON"
machine:
image: ubuntu-2004:202201-02
Expand All @@ -96,7 +96,7 @@ jobs:

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

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

deploy-release:
environment:
DOCKER_TAG: chronograf-20240320
DOCKER_TAG: chronograf-20240416
GO111MODULE: "ON"
machine:
image: ubuntu-2004:202201-02
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chronograf-cypress-tests.yaml
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.21.8'
go-version: '1.21.9'

- uses: actions/setup-node@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@

### Other

1. [#6085](https://github.com/influxdata/chronograf/pull/6085): Upgrade golang to 1.21.8.
1. [#6090](https://github.com/influxdata/chronograf/pull/6090): Upgrade golang to 1.21.9.

## v1.10.3 [2024-02-28]

Expand Down
2 changes: 1 addition & 1 deletion etc/Dockerfile_build
Expand Up @@ -34,7 +34,7 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \

# Install go
ENV GOPATH /root/go
ENV GO_VERSION 1.21.8
ENV GO_VERSION 1.21.9
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
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-20240320"
test -z "$DOCKER_TAG" && DOCKER_TAG="chronograf-20240416"

docker run \
-e AWS_ACCESS_KEY_ID \
Expand Down

0 comments on commit d2049db

Please sign in to comment.