From 9193db4acb16a778d22f7c447cf652ca41e54080 Mon Sep 17 00:00:00 2001 From: Seun Lanlege Date: Tue, 10 Oct 2023 12:23:06 +0100 Subject: [PATCH] submodules: recursive --- .github/workflows/test.yml | 6 +++++- evm/script/DeployGateway.s.sol | 1 - 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a55e85da..486f08ea6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -103,7 +103,11 @@ jobs: echo "TUID=$UID" >> $GITHUB_ENV - name: Checkout sources - uses: actions/checkout@master + uses: actions/checkout@v2 + with: + token: ${{ secrets.GH_TOKEN }} + submodules: recursive + - name: Install rust stable toolchain uses: actions-rs/toolchain@v1 diff --git a/evm/script/DeployGateway.s.sol b/evm/script/DeployGateway.s.sol index 17dda1560..6a7e29904 100644 --- a/evm/script/DeployGateway.s.sol +++ b/evm/script/DeployGateway.s.sol @@ -53,6 +53,5 @@ contract DeployScript is Script { TokenFaucet faucet = new TokenFaucet{salt: salt}(address(t)); t.grantRole(MINTER_ROLE, address(faucet)); - t.grantRole(BURNER_ROLE, address(faucet)); } }