From 1cc75aa6e3efd2c638a86bf7967502729600f130 Mon Sep 17 00:00:00 2001 From: Iuga Mihai Date: Tue, 5 Apr 2022 21:51:00 +0300 Subject: [PATCH] go 1.17 --- .github/workflows/pr-build.yml | 2 +- .github/workflows/pr-integration-tests.yml | 2 +- .github/workflows/pr-tests.yml | 2 +- go.mod | 18 +++++++++++++++++- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index 63bc3af5..4c816dab 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -15,7 +15,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.15.5 + go-version: ^1.17.6 id: go - name: Check out code into the Go module directory diff --git a/.github/workflows/pr-integration-tests.yml b/.github/workflows/pr-integration-tests.yml index 6c886cbb..ae4ee6f9 100644 --- a/.github/workflows/pr-integration-tests.yml +++ b/.github/workflows/pr-integration-tests.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.15.6 + go-version: ^1.17.6 id: go - name: Check out code diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 4abc4e5c..bdd749be 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.15.6 + go-version: ^1.17.6 id: go - name: Check out code diff --git a/go.mod b/go.mod index 8b59c4dd..77999405 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/ElrondNetwork/elastic-indexer-go -go 1.15 +go 1.17 require ( github.com/ElrondNetwork/elrond-go-core v1.1.14 @@ -10,3 +10,19 @@ require ( github.com/stretchr/testify v1.7.0 github.com/tidwall/gjson v1.14.0 ) + +require ( + github.com/btcsuite/btcutil v1.0.2 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/denisbrodbeck/machineid v1.0.1 // indirect + github.com/gogo/protobuf v1.3.2 // indirect + github.com/golang/protobuf v1.5.2 // indirect + github.com/mr-tron/base58 v1.2.0 // indirect + github.com/pelletier/go-toml v1.9.3 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/tidwall/match v1.1.1 // indirect + github.com/tidwall/pretty v1.2.0 // indirect + golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect + google.golang.org/protobuf v1.26.0 // indirect + gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect +)