Skip to content

Commit

Permalink
Update versions of used GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
orome committed Nov 10, 2024
1 parent 0587efa commit b3233b5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:

- name: Post Discord start notification
# noinspection SpellCheckingInspection
uses: tsickert/discord-webhook@v5.3.0
uses: tsickert/discord-webhook@v6.0.0
with:
webhook-url: ${{ secrets.DISCORD_CODING_WEBHOOK_URL }}
content: "${{ github.repository }} - [${{ github.actor }}] ${{ github.workflow }} - started"

- name: Post Slack start notification
uses: slackapi/slack-github-action@v1.24.0
uses: slackapi/slack-github-action@v1.27.0
with:
payload: |
{
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python (${{ env.TOOL_PYTHON_VERSION }})
uses: actions/setup-python@v4
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ env.TOOL_PYTHON_VERSION }}

Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python (${{ env.TOOL_PYTHON_VERSION }})
uses: actions/setup-python@v4
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ env.TOOL_PYTHON_VERSION }}

Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:
- name: Post Discord failure notification
# noinspection SpellCheckingInspection
uses: tsickert/discord-webhook@v5.3.0
uses: tsickert/discord-webhook@v6.0.0
with:
webhook-url: ${{ secrets.DISCORD_CODING_WEBHOOK_URL }}
content: "${{ github.repository }} - [${{ github.actor }}] ${{ github.workflow }} - ${{ steps.failed_job.outputs.FAILED_JOB }} FAILED!\n<@${{ secrets.DISCORD_USER_ID }}>"
Expand All @@ -301,7 +301,7 @@ jobs:

- name: Post Slack failure notification
id: slack
uses: slackapi/slack-github-action@v1.24.0
uses: slackapi/slack-github-action@v1.27.0
with:
payload: |
{
Expand All @@ -325,13 +325,13 @@ jobs:

- name: Post Discord success notification
# noinspection SpellCheckingInspection
uses: tsickert/discord-webhook@v5.3.0
uses: tsickert/discord-webhook@v6.0.0
with:
webhook-url: ${{ secrets.DISCORD_CODING_WEBHOOK_URL }}
content: "${{ github.repository }} - [${{ github.actor }}] ${{ github.workflow }} - succeeded\n<@${{ secrets.DISCORD_USER_ID }}>"

- name: Post Slack success notification
uses: slackapi/slack-github-action@v1.24.0
uses: slackapi/slack-github-action@v1.27.0
with:
payload: |
{
Expand Down

0 comments on commit b3233b5

Please sign in to comment.