Skip to content

Commit 6955d90

Browse files
committed
Updated setup CI + fixed deployment script
1 parent e884fc1 commit 6955d90

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/actions/setup/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ runs:
66
using: composite
77
steps:
88
- name: Setup node
9-
uses: actions/setup-node@v3
9+
uses: actions/setup-node@v4
1010
with:
11-
node-version: "16.18.x"
11+
node-version: "20.x"
1212
cache: npm
13+
1314
- name: Install packages
1415
run: npm install
1516
shell: bash

deploy/2_voting.migration.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ export = async (deployer: Deployer) => {
2121
const voting = await deployProxy(deployer, Voting__factory, "Voting");
2222

2323
await voting.__Voting_init(
24-
config.tssSigner,
25-
config.chainName,
2624
config.registrationSMT,
2725
await proposalsState.getAddress(),
2826
await votingVerifier.getAddress(),
@@ -35,8 +33,6 @@ export = async (deployer: Deployer) => {
3533
const bioPassportVoting = await deployProxy(deployer, BioPassportVoting__factory, "BioPassportVoting");
3634

3735
await bioPassportVoting.__BioPassportVoting_init(
38-
config.tssSigner,
39-
config.chainName,
4036
config.registrationSMT,
4137
await proposalsState.getAddress(),
4238
await bioPassportVotingVerifier.getAddress(),

0 commit comments

Comments
 (0)