Skip to content

Commit 8d6957f

Browse files
authored
Merge branch 'main' into main
2 parents 45c50e8 + ea6652f commit 8d6957f

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/test_weaver-asset-exchange-fabric.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
run: |
144144
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.15.6/protoc-3.15.6-linux-x86_64.zip
145145
unzip protoc-3.15.6-linux-x86_64.zip -d protoc
146-
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
146+
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.2
147147
go install google.golang.org/grpc/cmd/[email protected]
148148
149149
# PROTOS

.github/workflows/test_weaver-asset-transfer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ jobs:
727727
run: |
728728
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.15.6/protoc-3.15.6-linux-x86_64.zip
729729
unzip protoc-3.15.6-linux-x86_64.zip -d protoc
730-
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
730+
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.2
731731
go install google.golang.org/grpc/cmd/[email protected]
732732
733733
# PROTOS

.github/workflows/test_weaver-data-sharing.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ jobs:
455455
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.15.6/protoc-3.15.6-linux-x86_64.zip
456456
unzip protoc-3.15.6-linux-x86_64.zip -d protoc
457457
rm -rf protoc-3.15.6-linux-x86_64.zip
458-
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
458+
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.2
459459
go install google.golang.org/grpc/cmd/[email protected]
460460
461461
- name: CI script for cleanup
@@ -895,7 +895,7 @@ jobs:
895895
run: |
896896
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.15.6/protoc-3.15.6-linux-x86_64.zip
897897
unzip protoc-3.15.6-linux-x86_64.zip -d protoc
898-
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
898+
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.2
899899
go install google.golang.org/grpc/cmd/[email protected]
900900
901901
# PROTOS

.github/workflows/test_weaver-fabric-fabric-satp.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
run: |
7373
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v3.15.6/protoc-3.15.6-linux-x86_64.zip
7474
unzip protoc-3.15.6-linux-x86_64.zip -d protoc
75-
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
75+
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.2
7676
go install google.golang.org/grpc/cmd/[email protected]
7777
7878
# PROTOS GO

docs/docs/weaver/getting-started/test-network/setup-local-docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Before starting, make sure you have the following software installed on your hos
3636
* Default method: Run the following with `sudo` if necessary. This will install both the protobuf compiler and the Go code generator plugins.
3737
```
3838
apt-get install protobuf-compiler
39-
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
39+
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.2
4040
go install google.golang.org/grpc/cmd/[email protected]
4141
```
4242
* If the above method installs an older version of `protoc` (check using `protoc --version`), say below 3.12.x, you should download pre-compiled binaries instead. (With an older version, you may see errors while attempting to launch and setup the Fabric networks).
@@ -46,7 +46,7 @@ Before starting, make sure you have the following software installed on your hos
4646
sudo apt-get install unzip
4747
unzip protoc-3.15.6-linux-x86_64.zip -d <some-folder-path>
4848
export PATH="$PATH:<some-folder-path>/bin"
49-
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
49+
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.2
5050
go install google.golang.org/grpc/cmd/[email protected]
5151
```
5252

docs/docs/weaver/getting-started/test-network/setup-local.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Before starting, make sure you have the following software installed on your hos
3838
* Default method: Run the following with `sudo` if necessary. This will install both the protobuf compiler and the Go code generator plugins.
3939
```
4040
apt-get install protobuf-compiler
41-
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
41+
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.2
4242
go install google.golang.org/grpc/cmd/[email protected]
4343
```
4444
* If the above method installs an older version of `protoc` (check using `protoc --version`), say below 3.12.x, you should download pre-compiled binaries instead. (With an older version, you may see errors while attempting to launch and setup the Fabric networks).
@@ -48,7 +48,7 @@ Before starting, make sure you have the following software installed on your hos
4848
sudo apt-get install unzip
4949
unzip protoc-3.15.6-linux-x86_64.zip -d <some-folder-path>
5050
export PATH="$PATH:<some-folder-path>/bin"
51-
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
51+
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.2
5252
go install google.golang.org/grpc/cmd/[email protected]
5353
```
5454
- SQLite3 Library:

packages/cactus-plugin-satp-hermes/src/test/typescript/integration/recovery/recovery-stage-1.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ afterAll(async () => {
320320
}
321321
});
322322

323-
describe("Stage 1 Recovery Test", () => {
323+
describe.skip("Stage 1 Recovery Test", () => {
324324
it("should recover Stage 1 hashes, timestamps, signatures, and update session state to RECOVERED", async () => {
325325
crashManager1 = gateway1["crashManager"] as CrashManager;
326326
expect(crashManager1).toBeInstanceOf(CrashManager);

0 commit comments

Comments
 (0)