Skip to content

Commit

Permalink
update to fabric 25 (#114)
Browse files Browse the repository at this point in the history
with fabric 2.5 announcement, update CI to fabric 2.5

Signed-off-by: Sam Yuan <[email protected]>
  • Loading branch information
SamYuan1990 authored Apr 3, 2023
1 parent d97cfb6 commit f193c96
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/golang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.19'
go-version: '1.20'
- name: Generate test mocks
run: make generate
- name: Unit test
Expand All @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.19'
go-version: '1.20'
- name: Generate test mocks
run: make generate
- name: Lint
Expand All @@ -33,11 +33,11 @@ jobs:
strategy:
fail-fast: false
matrix:
FABRIC_VERSION: ['2.4.8', '2.5.0-beta']
FABRIC_VERSION: ['2.4.8', '2.5.0']
CREATE_CHANNEL: [create_channel, existing_channel]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.19'
go-version: '1.20'
- run: ./hack/ci.sh ${{matrix.FABRIC_VERSION}} ${{matrix.CREATE_CHANNEL}}
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/hyperledger/fabric-admin-sdk

go 1.19
go 1.20

require (
github.com/Knetic/govaluate v3.0.0+incompatible
Expand Down

0 comments on commit f193c96

Please sign in to comment.