From 01ce7156d02830bed4816b59ec33dd978f725296 Mon Sep 17 00:00:00 2001 From: CHAMI Rachid Date: Fri, 12 Jan 2024 17:24:31 +0100 Subject: [PATCH] chore: bump go version to v1.21.6 (#688) --- .github/workflows/ci-release.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/tag.yml | 2 +- .github/workflows/test.yml | 2 +- e2e/Dockerfile_e2e | 2 +- e2e/go.mod | 2 +- go.mod | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index a8f64b73..9342091f 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -90,7 +90,7 @@ jobs: - run: git fetch --force --tags - uses: actions/setup-go@v5 with: - go-version: 1.21.1 + go-version: 1.21.6 - name: Import GPG key id: import_gpg uses: crazy-max/ghaction-import-gpg@v6 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 6ff599ba..c164dca3 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -21,7 +21,7 @@ on: - cron: '17 5 * * 1' env: - GO_VERSION: '1.21.1' + GO_VERSION: '1.21.6' jobs: analyze: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9514053c..beafc4f4 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: '1.21.1' + go-version: '1.21.6' - uses: actions/checkout@v4 - uses: technote-space/get-diff-action@v6.1.2 with: diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 566ced68..e66d83d4 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -15,7 +15,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.21.1' + go-version: '1.21.6' - name: Unshallow run: git fetch --prune --unshallow - name: Create release diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 22616303..deea06e0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,7 +5,7 @@ on: workflow_call: env: - GO_VERSION: '1.21.1' + GO_VERSION: '1.21.6' jobs: test: diff --git a/e2e/Dockerfile_e2e b/e2e/Dockerfile_e2e index bebba9d1..f3274101 100644 --- a/e2e/Dockerfile_e2e +++ b/e2e/Dockerfile_e2e @@ -1,5 +1,5 @@ # stage 1 Build blobstream binary -FROM golang:1.21.1-alpine as builder +FROM golang:1.21.6-alpine as builder RUN apk update && apk --no-cache add make gcc musl-dev git COPY . /orchestrator-relayer WORKDIR /orchestrator-relayer diff --git a/e2e/go.mod b/e2e/go.mod index 018ba92a..5e64a26d 100644 --- a/e2e/go.mod +++ b/e2e/go.mod @@ -1,6 +1,6 @@ module github.com/celestiaorg/orchestrator-relayer/e2e -go 1.21.1 +go 1.21.6 replace github.com/celestiaorg/orchestrator-relayer => ../ diff --git a/go.mod b/go.mod index d249ec3f..c8434b3b 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/celestiaorg/orchestrator-relayer -go 1.21.1 +go 1.21.6 require ( github.com/celestiaorg/celestia-app v1.6.0