Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit efc8d50

Browse files
authored
init (#533)
1 parent 70b5d4c commit efc8d50

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/setup-go@v5
2020
with:
21-
go-version: 1.22.4
21+
go-version: 1.21.8
2222
- uses: actions/checkout@v4
2323
- name: golangci-lint
2424
uses: golangci/golangci-lint-action@v4
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v4
3333
- uses: actions/setup-go@v5
3434
with:
35-
go-version: 1.22.4
35+
go-version: 1.21.8
3636
cache: true
3737
cache-dependency-path: go.sum
3838
- uses: technote-space/get-diff-action@v6.1.2

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install Go
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: 1.22.4
23+
go-version: 1.21.8
2424
- name: Unshallow
2525
run: git fetch --prune --unshallow
2626
- name: Create release

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v4
2121
- uses: actions/setup-go@v5
2222
with:
23-
go-version: 1.22.4
23+
go-version: 1.21.8
2424
cache: true
2525
cache-dependency-path: go.sum
2626
- uses: technote-space/get-diff-action@v6.1.2
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v4
5353
- uses: actions/setup-go@v5
5454
with:
55-
go-version: 1.22.4
55+
go-version: 1.21.8
5656
cache: true
5757
cache-dependency-path: go.sum
5858
- uses: technote-space/get-diff-action@v6.1.2
@@ -82,7 +82,7 @@ jobs:
8282
- uses: actions/setup-go@v5
8383
if: env.GIT_DIFF
8484
with:
85-
go-version: 1.22.4
85+
go-version: 1.21.8
8686
cache: true
8787

8888
# In this step, this action saves a list of existing images, the cache is

contrib/images/block-sdk.e2e.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22-bullseye AS builder
1+
FROM golang:1.21-bullseye AS builder
22

33
WORKDIR /src/bsdk
44
COPY . .

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/skip-mev/block-sdk
22

3-
go 1.22.4
3+
go 1.21.8
44

55
require (
66
cosmossdk.io/api v0.3.1

tests/e2e/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/skip-mev/block-sdk/tests/e2e
22

3-
go 1.22.4
3+
go 1.21.8
44

55
replace (
66
// interchaintest supports ICS features so we need this for now

0 commit comments

Comments
 (0)