Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xh3b4sd committed Sep 10, 2024
1 parent 00a0995 commit 2270db1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions pkg/generator/pbfts/pbfts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func Test_GrpcTs_Workflow(t *testing.T) {
command: "workflow create pbfts",
organization: "xh3b4sd",
repository: "tscode",
node: "15.x.x",
node: "20.x.x",
protoc: "3.13.0",
},
// Case 1 ensures that a workflow file can be generated according to its
Expand All @@ -45,7 +45,7 @@ func Test_GrpcTs_Workflow(t *testing.T) {
command: "workflow create pbfts --some argument",
organization: "some-org",
repository: "some-repo",
node: "15.x.x",
node: "20.x.x",
protoc: "3.5.1",
},
}
Expand Down
4 changes: 2 additions & 2 deletions pkg/generator/pbfts/testdata/workflow/case-0.golden
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
uses: "actions/checkout@v4"

- name: "Setup Typescript Env"
uses: "actions/setup-node@v3"
uses: "actions/setup-node@v4"
with:
node-version: "15.x.x"
node-version: "20.x.x"

- name: "Install Protoc Binary"
working-directory: "${{ runner.temp }}"
Expand Down
4 changes: 2 additions & 2 deletions pkg/generator/pbfts/testdata/workflow/case-1.golden
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
uses: "actions/checkout@v4"

- name: "Setup Typescript Env"
uses: "actions/setup-node@v3"
uses: "actions/setup-node@v4"
with:
node-version: "15.x.x"
node-version: "20.x.x"

- name: "Install Protoc Binary"
working-directory: "${{ runner.temp }}"
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/node.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

const (
Node = "18.x.x"
Node = "20.x.x"
)
2 changes: 1 addition & 1 deletion pkg/version/setup_node.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

const (
SetupNode = "3"
SetupNode = "4"
)

0 comments on commit 2270db1

Please sign in to comment.