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
10 changes: 5 additions & 5 deletions .github/workflows/dependabot-slack-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
steps:
- name: Restore cached Slack message timestamp
id: slack-message-timestamp-cache
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: slack-ts.txt
key: slack-ts-pr-${{ github.event.pull_request.number }}

- name: Post PR summary message to slack
if: github.event.action == 'opened'
id: message
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
method: chat.postMessage
token: ${{ secrets.VAKGROEP_DEPENDABOT_SLACK_BOT_TOKEN }}
Expand All @@ -47,14 +47,14 @@ jobs:

- name: Cache Slack message timestamp
if: github.event.action == 'opened'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: slack-ts.txt
key: slack-ts-pr-${{ github.event.pull_request.number }}

- name: Post a detailed message in a thread
if: github.event.action == 'opened'
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
method: chat.postMessage
token: ${{ secrets.VAKGROEP_DEPENDABOT_SLACK_BOT_TOKEN }}
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:

- name: Post update message to thread
if: github.event.action == 'synchronize' && steps.slack-message-timestamp-cache.outputs.cache-hit == 'true'
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
method: chat.postMessage
token: ${{ secrets.VAKGROEP_DEPENDABOT_SLACK_BOT_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version-file: "pyproject.toml"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Run tests
run: docker compose run --rm test
Expand Down