From b183a25bcb4f6048ff94922dd28d753ac98d747f Mon Sep 17 00:00:00 2001 From: Maru Newby Date: Wed, 24 Jul 2024 00:17:20 -0700 Subject: [PATCH 1/2] [ci] Update fuzz merkledb workflow to target master branch When the active branch changed from dev to master this job appears to have been overlooked because nobody was seeing the notifications of its failure. --- .github/workflows/fuzz_merkledb.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/fuzz_merkledb.yml b/.github/workflows/fuzz_merkledb.yml index 1b331f0cfad6..8019b449068c 100644 --- a/.github/workflows/fuzz_merkledb.yml +++ b/.github/workflows/fuzz_merkledb.yml @@ -15,8 +15,6 @@ jobs: steps: - name: Git checkout uses: actions/checkout@v4 - with: - ref: 'dev' - name: Set up Go uses: ./.github/actions/setup-go-for-project - name: Run merkledb fuzz tests From 8735b31dee17a213e79001228fce3daace04ec84 Mon Sep 17 00:00:00 2001 From: Maru Newby Date: Wed, 24 Jul 2024 10:51:38 -0700 Subject: [PATCH 2/2] fixup: Update regular fuzz job too --- .github/workflows/fuzz.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index abc4f141ef3c..ef6deedfe840 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -2,7 +2,7 @@ name: Run fuzz tests on: schedule: - - cron: "0 0 * * *" + - cron: "0 0 * * *" # Once a day at midnight UTC permissions: contents: read @@ -13,8 +13,6 @@ jobs: steps: - name: Git checkout uses: actions/checkout@v4 - with: - ref: 'dev' - name: Set up Go uses: ./.github/actions/setup-go-for-project - name: Run fuzz tests