From ef394eb972f1a51a79ba382686ff2139ccb3b4e1 Mon Sep 17 00:00:00 2001 From: Bryan Potter Date: Wed, 6 Nov 2024 18:22:58 -0700 Subject: [PATCH] upgrade go version to 1.19 --- .github/workflows/ci.yml | 9 ++++----- go.mod | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5674a16c..6c07a5cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: pull_request: env: - go_version: 1.18 + go_version: 1.19 GO111MODULE: on COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }} @@ -57,15 +57,15 @@ jobs: - uses: actions/checkout@v3 with: version: latest - - run: make check-format - + - run: make check-format + Check-Gen: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: version: latest - - run: make check-gen + - run: make check-gen Coverage: runs-on: ubuntu-latest @@ -85,4 +85,3 @@ jobs: with: version: latest - run: make salus - \ No newline at end of file diff --git a/go.mod b/go.mod index 7f02162e..08409d9c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/coinbase/rosetta-sdk-go -go 1.18 +go 1.19 require ( github.com/DataDog/zstd v1.5.2