Skip to content

Commit

Permalink
fix: make jobs run sequentially
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Mar 20, 2024
1 parent 0fe7167 commit 7221443
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cron.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Governance Checks

concurrency:
group: ${{ github.workflow }}

on:
schedule:
- cron: "0 */2 * * *"
Expand All @@ -24,8 +27,6 @@ on:

jobs:
generate-reports:
concurrency:
group: ${{ github.workflow }} ${{ inputs.type || 'proposal' }} ${{ inputs.chainId }} ${{ inputs.ids }}
name: Check all live proposals
runs-on: ubuntu-latest
env:
Expand Down
2 changes: 1 addition & 1 deletion script/E2EPayload.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ contract E2EPayload is Script, ProtocolV3TestBase {

string[] memory inputs = new string[](7);
inputs[0] = 'npx';
inputs[1] = '@bgd-labs/aave-cli@^0.9.1';
inputs[1] = '@bgd-labs/aave-cli@^0.9.2-7fd017e59a197697f6bf6bdca3044b95f13b2a86.0';
inputs[2] = 'diff-snapshots';
inputs[3] = beforePath;
inputs[4] = afterPath;
Expand Down

0 comments on commit 7221443

Please sign in to comment.