From a45c15ddbe97d753dab1dfb8355d5ce80a34ad2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Mar 2026 09:14:04 +0000 Subject: [PATCH 1/2] [github-actions]: Bump slackapi/slack-github-action Bumps [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action) from 2.1.1 to 3.0.1. - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Commits](https://github.com/slackapi/slack-github-action/compare/v2.1.1...v3.0.1) --- updated-dependencies: - dependency-name: slackapi/slack-github-action dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/notify_slack.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/notify_slack.yml b/.github/workflows/notify_slack.yml index 2a8078ee0..8bc2a663c 100644 --- a/.github/workflows/notify_slack.yml +++ b/.github/workflows/notify_slack.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Send issue notification to Slack if: github.event_name == 'issues' - uses: slackapi/slack-github-action@v2.1.1 + uses: slackapi/slack-github-action@v3.0.1 with: webhook: ${{ secrets.SLACK_WEBHOOK_URL_ISSUE }} webhook-type: incoming-webhook @@ -27,7 +27,7 @@ jobs: - name: Send pull request notification to Slack if: github.event_name == 'pull_request_target' - uses: slackapi/slack-github-action@v2.1.1 + uses: slackapi/slack-github-action@v3.0.1 with: webhook: ${{ secrets.SLACK_WEBHOOK_URL_PR }} webhook-type: incoming-webhook From 978cfe15bc6d3cde11c85cf0befae002e86a9b26 Mon Sep 17 00:00:00 2001 From: Frank Chen Date: Fri, 13 Mar 2026 12:56:36 -0700 Subject: [PATCH 2/2] use node 24 --- .github/workflows/notify_slack.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/notify_slack.yml b/.github/workflows/notify_slack.yml index 8bc2a663c..1e4c450e0 100644 --- a/.github/workflows/notify_slack.yml +++ b/.github/workflows/notify_slack.yml @@ -12,6 +12,10 @@ jobs: notify: runs-on: ubuntu-latest steps: + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: '24.x' - name: Send issue notification to Slack if: github.event_name == 'issues' uses: slackapi/slack-github-action@v3.0.1