Skip to content

Commit

Permalink
chore(ci): lock go minor version in ci (#1721)
Browse files Browse the repository at this point in the history
Lock go minor version in ci

Locking goversion to 1.22 in ci until we can upgrade to 1.23. Upgrade to
1.23
is blocked by ethereum/go-ethereum#30100

issue: none
  • Loading branch information
kevinhalliday authored Aug 14, 2024
1 parent 1c27a25 commit f7371c7
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-sol-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
go-version: '1.22'
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-verifypr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
go-version: '1.22'
- name: "Verify PR"
run: go run github.com/omni-network/omni/scripts/verifypr
4 changes: 2 additions & 2 deletions .github/workflows/clicommand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
go-version: '1.22'

- name: Build binaries
uses: goreleaser/goreleaser-action@v5
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
go-version: '1.22'

- name: Configure Git
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2etest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
go-version: '1.22'

- name: Run e2e tests
run: make e2e-ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
go-version: '1.22'
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gotest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
go-version: '1.22'
# TODO(corver): add coverage
- name: Pull anvil # This can be slow and cause timeouts
run: docker pull ghcr.io/foundry-rs/foundry:latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-e2etest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
go-version: '1.22'

- name: Build binaries
uses: goreleaser/goreleaser-action@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 'stable'
go-version: '1.22'
- name: Run pre-commit hooks
uses: pre-commit/[email protected]

0 comments on commit f7371c7

Please sign in to comment.