Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-failure-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ jobs:

- name: Post analysis to Slack
if: always() && steps.get-logs.outputs.is_main == 'true'
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
webhook-type: incoming-webhook
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack of CI failure
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
webhook-type: incoming-webhook
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
result-encoding: string
- name: Notify Slack of CI recovery
if: steps.check-previous.outputs.result == 'true'
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
webhook-type: incoming-webhook
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack of nightly test failure
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
webhook-type: incoming-webhook
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
result-encoding: string
- name: Notify Slack of nightly test recovery
if: steps.check-previous.outputs.result == 'true'
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
webhook-type: incoming-webhook
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Notify Slack of Release failure
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
webhook-type: incoming-webhook
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
result-encoding: string
- name: Notify Slack of Release recovery
if: steps.check-previous.outputs.result == 'true'
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK }}
webhook-type: incoming-webhook
Expand All @@ -125,7 +125,7 @@ jobs:
if: success() && needs.release.outputs.prerelease != 'true'
steps:
- name: Notify Slack
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
webhook: ${{ secrets.SLACK_WEBHOOK_PUBLISHER }}
webhook-type: incoming-webhook
Expand Down
Loading