From b29798d50a463ebad3552fdc0e543fcf269883a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 11:52:48 +0000 Subject: [PATCH 1/2] chore(deps): bump slackapi/slack-github-action Bumps the notifications group with 1 update: [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action). Updates `slackapi/slack-github-action` from 1.24.0 to 2.1.1 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Commits](https://github.com/slackapi/slack-github-action/compare/v1.24.0...v2.1.1) --- updated-dependencies: - dependency-name: slackapi/slack-github-action dependency-version: 2.1.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: notifications ... Signed-off-by: dependabot[bot] --- .github/workflows/gptchangelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gptchangelog.yml b/.github/workflows/gptchangelog.yml index 88003b2..fc08276 100644 --- a/.github/workflows/gptchangelog.yml +++ b/.github/workflows/gptchangelog.yml @@ -733,7 +733,7 @@ jobs: runs-on: blacksmith-4vcpu-ubuntu-2404 steps: - name: Send Slack notification for sync PR - uses: slackapi/slack-github-action@e28cf165c92ffef168d23c5c9000cffc8a25e117 # v1.24.0 + uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 # v3.0.1 with: payload: | { From 0cdf6bcdb9d494e7a19ef42aa17d2e5a734c6ce4 Mon Sep 17 00:00:00 2001 From: Lucas Bedatty Date: Fri, 17 Apr 2026 15:22:41 -0300 Subject: [PATCH 2/2] fix(gptchangelog): migrate slack-github-action to v3 webhook inputs --- .github/workflows/gptchangelog.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gptchangelog.yml b/.github/workflows/gptchangelog.yml index fc08276..c2f2743 100644 --- a/.github/workflows/gptchangelog.yml +++ b/.github/workflows/gptchangelog.yml @@ -735,6 +735,8 @@ jobs: - name: Send Slack notification for sync PR uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 # v3.0.1 with: + webhook: ${{ secrets.SLACK_WEBHOOK_URL }} + webhook-type: incoming-webhook payload: | { "blocks": [ @@ -771,6 +773,3 @@ jobs: } ] } - env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} - SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK