Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
chore(deps): bump go
Browse files Browse the repository at this point in the history
  • Loading branch information
itsdevbear committed Jan 4, 2024
1 parent b0f56ef commit b0ffa67
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# fail-fast: false
# matrix:
# language: ["go"]
# versions: [1.21.3]
# versions: [1.21.5]
# # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# # Use only 'java' to analyze code written in Java, Kotlin or both
# # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
docs:
strategy:
matrix:
go-version: [1.21.3]
go-version: [1.21.5]
python-version: [3.11.5]
runs-on: ubuntu-latest
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
matrix:
docker-type: [base] # Changed docker-version to docker-type for consistency with the Makefile
os: [polaris-linux-latest]
go-version: [1.21.3]
go-version: [1.21.5]
arch: [amd64] # Changed go-arch to arch for consistency with the Makefile
image-name: ["polard/base:v0.0.0"]
export-name: [base-image]
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
namespace: [cosmos]
docker-type: [localnet] # Changed docker-version to docker-type for consistency with the Makefile
os: [polaris-linux-latest]
go-version: [1.21.3]
go-version: [1.21.5]
arch: [amd64] # Changed go-arch to arch for consistency with the Makefile
base-image: [base-image]
image-name: ["polard/localnet:v0.0.0"]
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
strategy:
matrix:
os: [polaris-linux-latest]
go-version: [1.21.3]
go-version: [1.21.5]
base-image: [base-image]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
matrix:
namespace: ["e2e", "localnet"]
os: [polaris-linux-latest]
go-version: [1.21.3]
go-version: [1.21.5]
base-image: [localnet]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
matrix:
args: ["build", "lint", "test-unit-race", "test-unit-cover"]
os: [polaris-linux-latest]
go-version: [1.21.3]
go-version: [1.21.5]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/main.mk
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ proto-build:
# Variables
DOCKER_TYPE ?= base
ARCH ?= arm64
GO_VERSION ?= 1.21.3
GO_VERSION ?= 1.21.5
IMAGE_NAME ?= polard
IMAGE_VERSION ?= v0.0.0
BASE_IMAGE ?= polard/base:$(IMAGE_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion e2e/localnet/network/fixture_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ var _ = Describe("JSON RPC tests", func() {
"goodcontainer",
"8545/tcp",
"8546/tcp",
"1.21.3",
"1.21.5",
))
Expect(tf).ToNot(BeNil())
client = tf.EthClient()
Expand Down
2 changes: 1 addition & 1 deletion e2e/localnet/network/node_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ var _ = Describe("ContainerizedNode", func() {
"8545/tcp",
"8546/tcp",
[]string{
"GO_VERSION=1.21.3",
"GO_VERSION=1.21.5",
"BASE_IMAGE=polard/base:v0.0.0",
},
)
Expand Down
2 changes: 1 addition & 1 deletion e2e/precompile/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const (
containerName = "goodcontainer"
polardHTTPAddress = "8545/tcp"
polardWSAddress = "8546/tcp"
goVersion = "1.21.3"
goVersion = "1.21.5"
)

// NewPolarisFixtureConfig returns a polaris fixture config.
Expand Down
2 changes: 1 addition & 1 deletion e2e/testapp/docker/base.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
### Stage 0 - Build Arguments ###
#######################################################

ARG GO_VERSION=1.21.3
ARG GO_VERSION=1.21.5
ARG GOARCH=amd64
ARG GOOS=linux
ARG NAME=polaris-cosmos
Expand Down

0 comments on commit b0ffa67

Please sign in to comment.