diff --git a/.github/workflows/notify_slack.yml b/.github/workflows/notify_slack.yml index 2a8078ee..1e4c450e 100644 --- a/.github/workflows/notify_slack.yml +++ b/.github/workflows/notify_slack.yml @@ -12,9 +12,13 @@ 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@v2.1.1 + uses: slackapi/slack-github-action@v3.0.1 with: webhook: ${{ secrets.SLACK_WEBHOOK_URL_ISSUE }} webhook-type: incoming-webhook @@ -27,7 +31,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