Skip to content

chore: update dependencies#12

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/dependencies
Open

chore: update dependencies#12
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/dependencies

Conversation

@renovate

@renovate renovate Bot commented Sep 1, 2025

Copy link
Copy Markdown

Update Request | Renovate Bot

This PR contains the following updates:

Package Type Update Change
actions/checkout action major v5v7
actions/stale action major v9.1.0v10.3.0
dessant/lock-threads action major v5.0.1v6.0.2
docker/login-action action major v3v4
docker/setup-buildx-action action major v3v4
mcr.microsoft.com/playwright final minor v1.54.0-noblev1.61.1-noble
slackapi/slack-github-action action major v2v3

Release Notes

actions/checkout (actions/checkout)

v7.0.0

Compare Source

v7

Compare Source

v6.0.3

Compare Source

v6.0.2

Compare Source

v6.0.1

Compare Source

v6.0.0

Compare Source

v6

Compare Source

actions/stale (actions/stale)

v10.3.0

Compare Source

What's Changed

Bug Fix
Dependency Updates

New Contributors

Full Changelog: actions/stale@v10...v10.3.0

v10.2.0

Compare Source

What's Changed

Bug Fix
Dependency Updates

New Contributors

Full Changelog: actions/stale@v10...v10.2.0

v10.1.1

Compare Source

What's Changed

Bug Fix
Improvement
Dependency Upgrades

New Contributors

Full Changelog: actions/stale@v10...v10.1.1

v10.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/stale@v10...v10.1.0

v10.0.0

Compare Source

What's Changed

Breaking Changes
Enhancement
Dependency Upgrades
Documentation changes

New Contributors

Full Changelog: actions/stale@v9...v10.0.0

v10

Compare Source

dessant/lock-threads (dessant/lock-threads)

v6.0.2

Compare Source

Learn more about this release from the changelog.

v6.0.1

Compare Source

Learn more about this release from the changelog.

v6.0.0

Compare Source

Learn more about this release from the changelog.

v6

Compare Source

docker/login-action (docker/login-action)

v4.2.0

Compare Source

Full Changelog: docker/login-action@v4.1.0...v4.2.0

v4.1.0

Compare Source

Full Changelog: docker/login-action@v4.0.0...v4.1.0

v4.0.0

Compare Source

Full Changelog: docker/login-action@v3.7.0...v4.0.0

v4

Compare Source

docker/setup-buildx-action (docker/setup-buildx-action)

v4.1.0

Compare Source

  • Bump @​docker/actions-toolkit from 0.79.0 to 0.90.0 in #​489
  • Bump brace-expansion from 1.1.12 to 5.0.6 in #​547 #​508
  • Bump fast-xml-builder from 1.0.0 to 1.2.0 in #​540
  • Bump fast-xml-parser from 5.4.2 to 5.8.0 in #​496
  • Bump flatted from 3.3.3 to 3.4.2 in #​499
  • Bump glob from 10.3.12 to 13.0.6 in #​495
  • Bump handlebars from 4.7.8 to 4.7.9 in #​504
  • Bump lodash from 4.17.23 to 4.18.1 in #​523
  • Bump picomatch from 4.0.3 to 4.0.4 in #​503
  • Bump postcss from 8.5.6 to 8.5.10 in #​537
  • Bump tar from 6.2.1 to 7.5.15 in #​545
  • Bump undici from 6.23.0 to 6.25.0 in #​492
  • Bump vite from 7.3.1 to 7.3.2 in #​520

Full Changelog: docker/setup-buildx-action@v4.0.0...v4.1.0

v4.0.0

Compare Source

Full Changelog: docker/setup-buildx-action@v3.12.0...v4.0.0

v4

Compare Source

slackapi/slack-github-action (slackapi/slack-github-action)

v3.0.3: Slack GitHub Action v3.0.3

Compare Source

Patch Changes
  • 66834e4: feat: add instrumentation to address error rates

v3.0.2: Slack GitHub Action v3.0.2

Compare Source

Patch Changes
  • 79529d7: fix: resolve url.parse deprecation warning for webhook techniques

v3.0.1: Slack GitHub Action v3.0.1

Compare Source

What's Changed

Alongside the breaking changes of @v3.0.0 and a new technique to run Slack CLI commands, we tried the wrong name to publish to the GitHub Marketplace 🐙 This action is now noted as The Slack GitHub Action in listings 🎶 ✨

🎨 Maintenance

Full Changelog: slackapi/slack-github-action@v3.0.0...v3.0.1

v3.0.0: Slack GitHub Action v3.0.0

Compare Source

The @v3.0.0 release had a hiccup on publish and we recommend using @​v3.0.1 or a more recent version when updating! Oops!

🎽 Running Slack CLI commands and the active Node runtime, both included in this release 👟 ✨

⚠️ Breaking change: Node.js 24 the runtime

This major version updates the GitHub Actions required runtime to Node.js 24. Most GitHub-hosted runners already include this, but self-hosted runners may need to be updated ahead of planned deprecations of Node 20 on GitHub Actions runners.

📺 Enhancement: Run Slack CLI commands

This release introduces a new technique for running Slack CLI commands directly in GitHub Actions workflows. Use this to install the latest version (or a specific one) of the CLI and execute commands like deploy for merges to main, manifest validate with tests, and other commands.

Gather a token using the following CLI command to store with repo secrets, then get started with an example below:

$ slack auth token
🧪 Validate an app manifest on pull requests

Check that your app manifest is valid before merging changes:

🔗 https://docs.slack.dev/tools/slack-github-action/sending-techniques/running-slack-cli-commands/validate-a-manifest

- name: Validate the manifest
  uses: slackapi/slack-github-action/cli@v3.0.0
  with:
    command: "manifest validate --app ${{ vars.SLACK_APP_ID }}"
    token: ${{ secrets.SLACK_SERVICE_TOKEN }}
🚀 Deploy your app on push to main

Automate deployments whenever changes land on your main branch:

🔗 https://docs.slack.dev/tools/slack-github-action/sending-techniques/running-slack-cli-commands/deploy-an-app

- name: Deploy the app
  uses: slackapi/slack-github-action/cli@v3.0.0
  with:
    command: "deploy --app ${{ vars.SLACK_APP_ID }} --force"
    token: ${{ secrets.SLACK_SERVICE_TOKEN }}

Any Slack CLI command can be passed through the command option without the "slack" prefix 🍀

The token input accepts a service token for authentication. You can gather this token by running slack auth token with the Slack CLI and storing the value as a repository secret.

The latest Slack CLI version is used by default, but a specific one can be set with the version input.


🏆 Huge thanks to @​ewanek1 for explorations and prototypes toward the scripted CLI technique!

For full documentation on the CLI technique, check out the docs and explore the related pages 📚

What's Changed
👾 Enhancements
📚 Documentation
🧰 Maintenance
🎁 Dependencies
👋 New Contributors

Full Changelog: slackapi/slack-github-action@v2.1.1...v3.0.0

v3.0

Compare Source

v3

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@talos-bot talos-bot moved this to In Review in Planning Sep 1, 2025
@smira smira removed this from Planning Sep 1, 2025
@renovate renovate Bot changed the title chore: update mcr.microsoft.com/playwright docker tag to v1.55.0 chore: update dependencies Sep 5, 2025
@renovate renovate Bot force-pushed the renovate/dependencies branch from fced4ee to a85675e Compare September 5, 2025 08:12
@renovate renovate Bot force-pushed the renovate/dependencies branch from a85675e to fa696ed Compare September 24, 2025 19:38
@renovate renovate Bot force-pushed the renovate/dependencies branch 2 times, most recently from cc7791d to 7712333 Compare October 8, 2025 23:03
@renovate renovate Bot force-pushed the renovate/dependencies branch from 7712333 to 09d19bb Compare October 18, 2025 07:28
@renovate renovate Bot force-pushed the renovate/dependencies branch 2 times, most recently from 60e32a5 to 4a3b0d3 Compare November 25, 2025 23:01
@renovate renovate Bot force-pushed the renovate/dependencies branch from 4a3b0d3 to 4b34c5d Compare December 4, 2025 22:25
@renovate renovate Bot force-pushed the renovate/dependencies branch from 4b34c5d to a0911b6 Compare December 13, 2025 16:03
@renovate renovate Bot force-pushed the renovate/dependencies branch from a0911b6 to 356a2b2 Compare January 24, 2026 03:07
@renovate renovate Bot force-pushed the renovate/dependencies branch from 356a2b2 to 0866084 Compare January 31, 2026 03:56
@renovate renovate Bot force-pushed the renovate/dependencies branch from 0866084 to a569d3f Compare February 7, 2026 07:48
@renovate renovate Bot force-pushed the renovate/dependencies branch from a569d3f to 5a87b50 Compare February 18, 2026 23:42
@renovate renovate Bot force-pushed the renovate/dependencies branch 2 times, most recently from ba5fa61 to 2b7f02f Compare March 14, 2026 20:47
@renovate renovate Bot force-pushed the renovate/dependencies branch from 2b7f02f to b52c2de Compare April 15, 2026 11:07
@renovate renovate Bot force-pushed the renovate/dependencies branch 3 times, most recently from 1a60e71 to 7a64283 Compare May 5, 2026 03:38
@renovate renovate Bot force-pushed the renovate/dependencies branch 2 times, most recently from ac2dd95 to 2dcd3d1 Compare May 13, 2026 22:47
@renovate renovate Bot force-pushed the renovate/dependencies branch 2 times, most recently from 3af7f16 to 2afaf38 Compare May 23, 2026 15:25
@renovate renovate Bot force-pushed the renovate/dependencies branch from 2afaf38 to 070c804 Compare June 20, 2026 19:52
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate Bot force-pushed the renovate/dependencies branch from 070c804 to 24624a4 Compare June 24, 2026 11:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants