Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update remaining tests to go 1.21 #1998

Merged
merged 3 commits into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-docker-image-and-binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
go-version:
- 1.19
- 1.21
os: [ubuntu-20.04, macos-latest]
arch: [amd64, arm64, arm]
exclude:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-go-generate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
go-version:
- 1.19
- 1.21
os:
- ubuntu-20.04
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-proto-generate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
go-version:
- 1.19
- 1.21
os:
- ubuntu-20.04
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/enforce-evm-migration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
go-version:
- 1.19
- 1.21
os:
- ubuntu-20.04
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
go-version:
- 1.19
- 1.21
os:
- ubuntu-20.04
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
go-version:
- 1.19
- 1.21
fahimahmedx marked this conversation as resolved.
Show resolved Hide resolved
os:
- ubuntu-20.04
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:experimental

FROM golang:1.19-alpine3.17 as build
FROM golang:1.21-alpine3.18 as build

RUN apk add --no-cache --update \
ca-certificates \
Expand All @@ -17,7 +17,7 @@ COPY . .
ENV CGO_ENABLED=0
RUN make build

FROM alpine:3.17
FROM alpine:3.18

ARG USER_ID=1000
ARG GROUP_ID=1001
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.binaries
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19
FROM golang:1.21

RUN apt update && apt install \
ca-certificates \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.debug
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:experimental

FROM golang:1.19 as debug
FROM golang:1.21 as debug
RUN groupadd -r -g 1001 axelard && useradd -m -r -u 1000 -g axelard axelard

WORKDIR /axelar
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.rosetta
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:experimental

FROM golang:1.19-bullseye as build
FROM golang:1.21-bullseye as build
RUN apt update && apt install ca-certificates git make -y

WORKDIR axelar
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/axelarnetwork/axelar-core

go 1.19
go 1.21

require (
github.com/armon/go-metrics v0.4.1
Expand Down
Loading