diff --git a/.github/workflows/homebrew.yml b/.github/workflows/homebrew.yml index ddea9eaa9c..a7c14379f7 100644 --- a/.github/workflows/homebrew.yml +++ b/.github/workflows/homebrew.yml @@ -3,6 +3,7 @@ name: "Smoke Test Homebrew install" on: schedule: - cron: "0 0 * * *" + workflow_dispatch: permissions: contents: read @@ -20,7 +21,8 @@ jobs: run: brew install mongosh - name: Run smoke tests - run: npx --yes mongodb-runner -- exec -- sh -c 'env MONGOSH_SMOKE_TEST_SERVER=$MONGODB_URI mongosh --smokeTests' + # 8.0.5 due to us having macos-13 in the platform support list, SERVER-101020 + run: npx --yes mongodb-runner --version 8.0.5-enterprise -- exec -- sh -c 'env MONGOSH_SMOKE_TEST_SERVER=$MONGODB_URI mongosh --smokeTests' - name: Report failure if: ${{ failure() }}