From 912583c8f4b9693de4c24761faf64337c00630b6 Mon Sep 17 00:00:00 2001 From: Hannah Ramadan Date: Wed, 14 Aug 2024 12:45:41 -0700 Subject: [PATCH] Update to node20 --- .github/actions/workflow-conclusion/action.yml | 2 +- .github/workflows/ci_cron.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/workflow-conclusion/action.yml b/.github/actions/workflow-conclusion/action.yml index f745f7c8ce..e11fd52b8b 100644 --- a/.github/actions/workflow-conclusion/action.yml +++ b/.github/actions/workflow-conclusion/action.yml @@ -35,5 +35,5 @@ branding: color: 'green' runs: - using: node16 + using: node20 main: lib/main.js diff --git a/.github/workflows/ci_cron.yml b/.github/workflows/ci_cron.yml index 1e1dec8f04..df92ffd901 100644 --- a/.github/workflows/ci_cron.yml +++ b/.github/workflows/ci_cron.yml @@ -319,7 +319,7 @@ jobs: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # tag v4.1.7 - uses: ./.github/actions/workflow-conclusion - uses: voxmedia/github-action-slack-notify-build@3665186a8c1a022b28a1dbe0954e73aa9081ea9e # tag v1.6.0 - if: ${{ env.WORKFLOW_CONCLUSION == 'failure'}} + if: ${{ env.WORKFLOW_CONCLUSION == 'failure' && github.event_name != 'workflow_dispatch' }} env: SLACK_BOT_TOKEN: ${{ secrets.RUBY_GITHUB_ACTIONS_BOT_WEBHOOK }} with: @@ -342,7 +342,7 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} - uses: voxmedia/github-action-slack-notify-build@3665186a8c1a022b28a1dbe0954e73aa9081ea9e # tag v1.6.0 - if: ${{ env.WORKFLOW_CONCLUSION == 'success' && steps.last_status.outputs.last_status == 'failure'}} + if: ${{ env.WORKFLOW_CONCLUSION == 'success' && steps.last_status.outputs.last_status == 'failure' && github.event_name != 'workflow_dispatch' }} env: SLACK_BOT_TOKEN: ${{ secrets.RUBY_GITHUB_ACTIONS_BOT_WEBHOOK }} with: