From efc8d5084870d3f18f9e809ae36e1208b550cd8e Mon Sep 17 00:00:00 2001 From: David Terpay <35130517+davidterpay@users.noreply.github.com> Date: Thu, 20 Jun 2024 18:02:08 -0400 Subject: [PATCH] init (#533) --- .github/workflows/lint.yml | 4 ++-- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 6 +++--- contrib/images/block-sdk.e2e.Dockerfile | 2 +- go.mod | 2 +- tests/e2e/go.mod | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d0a07835..918564f0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/setup-go@v5 with: - go-version: 1.22.4 + go-version: 1.21.8 - uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v4 @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: 1.22.4 + go-version: 1.21.8 cache: true cache-dependency-path: go.sum - uses: technote-space/get-diff-action@v6.1.2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 704b2c75..fe723295 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: 1.22.4 + go-version: 1.21.8 - name: Unshallow run: git fetch --prune --unshallow - name: Create release diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 57fb3b5f..01f5330c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: 1.22.4 + go-version: 1.21.8 cache: true cache-dependency-path: go.sum - uses: technote-space/get-diff-action@v6.1.2 @@ -52,7 +52,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: 1.22.4 + go-version: 1.21.8 cache: true cache-dependency-path: go.sum - uses: technote-space/get-diff-action@v6.1.2 @@ -82,7 +82,7 @@ jobs: - uses: actions/setup-go@v5 if: env.GIT_DIFF with: - go-version: 1.22.4 + go-version: 1.21.8 cache: true # In this step, this action saves a list of existing images, the cache is diff --git a/contrib/images/block-sdk.e2e.Dockerfile b/contrib/images/block-sdk.e2e.Dockerfile index 9c9e0a22..2d50f94c 100644 --- a/contrib/images/block-sdk.e2e.Dockerfile +++ b/contrib/images/block-sdk.e2e.Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22-bullseye AS builder +FROM golang:1.21-bullseye AS builder WORKDIR /src/bsdk COPY . . diff --git a/go.mod b/go.mod index a9e8c4d8..beada4df 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/skip-mev/block-sdk -go 1.22.4 +go 1.21.8 require ( cosmossdk.io/api v0.3.1 diff --git a/tests/e2e/go.mod b/tests/e2e/go.mod index fe493d73..9cbc5c27 100644 --- a/tests/e2e/go.mod +++ b/tests/e2e/go.mod @@ -1,6 +1,6 @@ module github.com/skip-mev/block-sdk/tests/e2e -go 1.22.4 +go 1.21.8 replace ( // interchaintest supports ICS features so we need this for now