Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit 3045fc6

Browse files
Abdulboistroyronda
andauthored
chore: upgrade to Go 1.19 (#3382)
Update some tests due to changes of new 1.19 SDK Signed-off-by: Abdulbois <abdulbois.tursunov@avast.com> Signed-off-by: Abdulbois <abdulbois.tursunov@avast.com> Co-authored-by: Troy Ronda <troy@troyronda.com>
1 parent 52cdf1a commit 3045fc6

File tree

16 files changed

+62
-55
lines changed

16 files changed

+62
-55
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
os: [ubuntu-18.04, macOS-10.15]
2020
steps:
2121

22-
- name: Setup Go 1.17
22+
- name: Setup Go 1.19
2323
uses: actions/setup-go@v2
2424
with:
25-
go-version: 1.17
25+
go-version: 1.19
2626
id: go
2727

2828
- uses: actions/checkout@v3
@@ -49,10 +49,10 @@ jobs:
4949
image: ghcr.io/hyperledger/ursa-wrapper-go/uwg-build # a container with libursa installed
5050
timeout-minutes: 15
5151
steps:
52-
- name: Setup Go 1.17
52+
- name: Setup Go 1.19
5353
uses: actions/setup-go@v2
5454
with:
55-
go-version: 1.17
55+
go-version: 1.19
5656
id: go
5757

5858
- uses: actions/checkout@v3
@@ -67,10 +67,10 @@ jobs:
6767
timeout-minutes: 15
6868
steps:
6969

70-
- name: Setup Go 1.17
70+
- name: Setup Go 1.19
7171
uses: actions/setup-go@v2
7272
with:
73-
go-version: 1.17
73+
go-version: 1.19
7474
id: go
7575

7676
- uses: actions/checkout@v3
@@ -85,10 +85,10 @@ jobs:
8585
timeout-minutes: 10
8686
steps:
8787

88-
- name: Setup Go 1.17
88+
- name: Setup Go 1.19
8989
uses: actions/setup-go@v2
9090
with:
91-
go-version: 1.17
91+
go-version: 1.19
9292
id: go
9393

9494
- uses: actions/checkout@v3
@@ -103,10 +103,10 @@ jobs:
103103
timeout-minutes: 45
104104
steps:
105105

106-
- name: Setup Go 1.17
106+
- name: Setup Go 1.19
107107
uses: actions/setup-go@v2
108108
with:
109-
go-version: 1.17
109+
go-version: 1.19
110110
id: go
111111

112112
- name: Setup Node.js
@@ -142,10 +142,10 @@ jobs:
142142
timeout-minutes: 10
143143
runs-on: ubuntu-18.04
144144
steps:
145-
- name: Setup Go 1.17
145+
- name: Setup Go 1.19
146146
uses: actions/setup-go@v2
147147
with:
148-
go-version: 1.17
148+
go-version: 1.19
149149

150150
- uses: actions/checkout@v3
151151

@@ -160,10 +160,10 @@ jobs:
160160
runs-on: ubuntu-18.04
161161
timeout-minutes: 10
162162
steps:
163-
- name: Setup Go 1.17
163+
- name: Setup Go 1.19
164164
uses: actions/setup-go@v2
165165
with:
166-
go-version: 1.17
166+
go-version: 1.19
167167
id: go
168168

169169
- name: Setup Node.js

.github/workflows/test-suite.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
timeout-minutes: 10
2727
steps:
2828

29-
- name: Setup Go 1.17
29+
- name: Setup Go 1.19
3030
uses: actions/setup-go@v2
3131
with:
32-
go-version: 1.17
32+
go-version: 1.19
3333
id: go
3434

3535
- name: Setup node

cmd/aries-agent-mobile/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module github.com/hyperledger/aries-framework-go/cmd/aries-agent-mobile
66

7-
go 1.17
7+
go 1.19
88

99
require (
1010
github.com/google/uuid v1.3.0

cmd/aries-agent-rest/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module github.com/hyperledger/aries-framework-go/cmd/aries-agent-rest
66

7-
go 1.17
7+
go 1.19
88

99
require (
1010
github.com/cenkalti/backoff/v4 v4.1.2

cmd/aries-js-worker/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module github.com/hyperledger/aries-framework-go/cmd/aries-js-worker
66

7-
go 1.17
7+
go 1.19
88

99
require (
1010
github.com/google/uuid v1.3.0

component/storage/edv/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module github.com/hyperledger/aries-framework-go/component/storage/edv
66

7-
go 1.17
7+
go 1.19
88

99
require (
1010
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce

component/storage/indexeddb/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module github.com/hyperledger/aries-framework-go/component/storage/indexeddb
66

7-
go 1.17
7+
go 1.19
88

99
require (
1010
github.com/google/uuid v1.1.2

component/storage/leveldb/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module github.com/hyperledger/aries-framework-go/component/storage/leveldb
66

7-
go 1.17
7+
go 1.19
88

99
require (
1010
github.com/google/uuid v1.1.2

component/storageutil/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module github.com/hyperledger/aries-framework-go/component/storageutil
66

7-
go 1.17
7+
go 1.19
88

99
require (
1010
github.com/google/uuid v1.1.2

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ require (
6464
gopkg.in/yaml.v3 v3.0.1 // indirect
6565
)
6666

67-
go 1.17
67+
go 1.19

0 commit comments

Comments
 (0)