From 00fa3f5cdd84e399b5790cc66ae0d0b306a7f538 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 05:34:22 +0000 Subject: [PATCH] ci(deps): bump the maintenance group across 1 directory with 4 updates Bumps the maintenance group with 4 updates in the / directory: [actions/cache](https://github.com/actions/cache), [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action), [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) Updates `slackapi/slack-github-action` from 3.0.3 to 4.0.0 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Changelog](https://github.com/slackapi/slack-github-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/slackapi/slack-github-action/compare/v3.0.3...v4.0.0) Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: maintenance - dependency-name: slackapi/slack-github-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: maintenance - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: maintenance - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: maintenance ... Signed-off-by: dependabot[bot] --- .github/workflows/dependabot-slack-notification.yml | 10 +++++----- .github/workflows/linting.yml | 4 ++-- .github/workflows/tests.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/dependabot-slack-notification.yml b/.github/workflows/dependabot-slack-notification.yml index 72a8344..034036f 100644 --- a/.github/workflows/dependabot-slack-notification.yml +++ b/.github/workflows/dependabot-slack-notification.yml @@ -24,7 +24,7 @@ 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 }} @@ -32,7 +32,7 @@ jobs: - 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 }} @@ -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 }} @@ -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 }} diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index ff1ac1e..5726a04 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -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" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6098521..1b917bf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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