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
4 changes: 2 additions & 2 deletions backend/go-vulncheck/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
shell: bash
- name: Send data to Slack If Failure
if: inputs.slack_webhook_url != '' && failure()
uses: slackapi/slack-github-action@v2.1.1
uses: slackapi/slack-github-action@v3.0.1
id: slack-failure
with:
webhook: ${{ inputs.slack_webhook_url }}
Expand Down Expand Up @@ -71,7 +71,7 @@ runs:
}
- name: Send data to Slack If Success
if: inputs.slack_webhook_url != '' && !failure() && inputs.show_success_slack_msg == 'true'
uses: slackapi/slack-github-action@v2.1.1
uses: slackapi/slack-github-action@v3.0.1
id: slack-success
with:
webhook: ${{ inputs.slack_webhook_url }}
Expand Down
4 changes: 2 additions & 2 deletions frontend/pull-request/notify/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ runs:

- name: Send message to Slack
id: send_slack_message
uses: slackapi/slack-github-action@v2.1.1
uses: slackapi/slack-github-action@v3.0.1
with:
method: 'chat.postMessage'
token: ${{ inputs.slack-bot-token }}
Expand Down Expand Up @@ -132,7 +132,7 @@ runs:

- name: Add reaction to the message
id: add_reaction
uses: slackapi/slack-github-action@v2.1.1
uses: slackapi/slack-github-action@v3.0.1
with:
method: 'reactions.add'
token: ${{ inputs.slack-bot-token }}
Expand Down
2 changes: 1 addition & 1 deletion frontend/slack/deploy-failure/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
[[ "${{ inputs.bot-token }}" ]] || { echo "bot-token input is empty"; exit 1; }

- name: Notify Slack
uses: 'slackapi/slack-github-action@v2.1.1'
uses: 'slackapi/slack-github-action@v3.0.1'
with:
errors: true
method: 'chat.update'
Expand Down
2 changes: 1 addition & 1 deletion frontend/slack/deploy-start/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:

- name: Notify Slack
id: notify-slack
uses: slackapi/slack-github-action@v2.1.1
uses: slackapi/slack-github-action@v3.0.1
with:
errors: true
method: chat.postMessage
Expand Down
2 changes: 1 addition & 1 deletion frontend/slack/deploy-success/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
[[ "${{ inputs.bot-token }}" ]] || { echo "bot-token input is empty"; exit 1; }

- name: Notify Slack
uses: 'slackapi/slack-github-action@v2.1.1'
uses: 'slackapi/slack-github-action@v3.0.1'
with:
errors: true
method: 'chat.update'
Expand Down
2 changes: 1 addition & 1 deletion frontend/slack/job-failure/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ runs:
[[ "${{ inputs.bot-token }}" ]] || { echo "bot-token input is empty"; exit 1; }

- name: Notify Slack
uses: 'slackapi/slack-github-action@v2.1.1'
uses: 'slackapi/slack-github-action@v3.0.1'
with:
errors: true
method: 'chat.postMessage'
Expand Down
2 changes: 1 addition & 1 deletion frontend/slack/job-message/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ runs:
[[ "${{ inputs.bot-token }}" ]] || { echo "bot-token input is empty"; exit 1; }

- name: Notify Slack
uses: 'slackapi/slack-github-action@v2.1.1'
uses: 'slackapi/slack-github-action@v3.0.1'
with:
errors: true
method: 'chat.postMessage'
Expand Down