Skip to content

build(deps): bump the github-actions group across 2 directories with 2 updates - #16

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/github-actions-d2460a0489
Closed

build(deps): bump the github-actions group across 2 directories with 2 updates#16
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/github-actions-d2460a0489

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 22, 2026

Copy link
Copy Markdown
Contributor

Bumps the github-actions group with 2 updates in the / directory: rvben/rumdl and astral-sh/setup-uv.
Bumps the github-actions group with 2 updates in the /.github/workflows directory: rvben/rumdl and astral-sh/setup-uv.

Updates rvben/rumdl from 0.2.52 to 0.2.55

Release notes

Sourced from rvben/rumdl's releases.

v0.2.55

Fixed

  • lsp: honor per-directory config across workspace features (2c7670f)
  • core: align path-aware document processing across adapters (7285b7a)

Performance

  • lsp: construct workspace index rules directly (864e42a)

Downloads

File Platform Checksum
rumdl-v0.2.55-x86_64-unknown-linux-gnu.tar.gz Linux x86_64 checksum
rumdl-v0.2.55-x86_64-unknown-linux-musl.tar.gz Linux x86_64 (musl) checksum
rumdl-v0.2.55-aarch64-unknown-linux-gnu.tar.gz Linux ARM64 checksum
rumdl-v0.2.55-aarch64-unknown-linux-musl.tar.gz Linux ARM64 (musl) checksum
rumdl-v0.2.55-x86_64-apple-darwin.tar.gz macOS x86_64 checksum
rumdl-v0.2.55-aarch64-apple-darwin.tar.gz macOS ARM64 (Apple Silicon) checksum
rumdl-v0.2.55-x86_64-pc-windows-msvc.zip Windows x86_64 checksum

Installation

Using uv (Recommended)

uv tool install rumdl

Using pip

pip install rumdl

Using pipx

pipx install rumdl

Direct Download

Download the appropriate binary for your platform from the table above, extract it, and add it to your PATH.

v0.2.54

Added

  • action: add a command input to run rumdl fmt (9b59bff)
  • action: add install-only input to skip linting (aa0c604)

... (truncated)

Changelog

Sourced from rvben/rumdl's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

0.2.58 - 2026-08-19

Added

  • wasm: load extends chains from embedder-supplied config files (e7c7d8f)

0.2.57 - 2026-08-18

Fixed

  • MD013: let a sentence open with a number under require-sentence-capital (5060333)
  • lsp: keep a CRLF document's line endings through fixes and code actions (c88a7da)

0.2.56 - 2026-08-18

Fixed

  • MD076: attach its edit to each warning so the CLI reports it fixable (a10f6c8)
  • MD076: analyse each nested list on its own spacing (eb2d9d8)
  • MD064: judge column alignment per list so a nested item keeps its parent's exemption (9ea97d1)
  • MD076: measure a list item's nesting level in columns as the block tracker does (15ba409)
  • MD032: measure list indent in columns so a tab nests and continues an item (bd197b0)
  • MD013: read sentence openers off the parse and honour reference definitions (78bafa9)
  • MD032: measure an HTML opener's indent in columns against every open item (56944fc)
  • MD013: keep links, images, math and HTML whole in sentence reflow (72871b9)
  • code-block-tools: resolve Windows tool names the way Command::new does (a005be4)
  • MD032: let an HTML block or fence at short indent end a list (75d49a8)
  • MD032: keep a Quarto div fence out of the lazy-continuation check (98242fd)
  • MD013: run reflow after every rule that rewrites inline content (aabb420)
  • MD046: classify indented code blocks from the line above's verdict (e8004fb)
  • MD032: treat under-indented text and no-space # lines as lazy continuations (3e60005)
  • code-block-tools: resolve tools in-process instead of spawning which (fb3e5d8)
  • MD057: invalidate cache when link targets change (f6ae68f)
  • MD075: require an outer pipe on orphaned table row candidates (66d8d12)
  • MD034: recognize reference definitions whose label escapes a closing bracket (f024e4d)

0.2.55 - 2026-08-13

Fixed

  • lsp: honor per-directory config across workspace features (2c7670f)
  • core: align path-aware document processing across adapters (7285b7a)

... (truncated)

Commits
  • 4997ff0 chore: bump version to v0.2.55
  • 1900e92 test: normalize path separators in workspace include-scan assertions
  • eb9e49d refactor(lint-context): own ordered list membership
  • e65cc5c refactor(lint-context): own parsed list semantics
  • f9a8980 refactor(lint-context): own rendered heading semantics
  • 06da883 refactor(lint-context): own parsed link semantics
  • 72be0d7 refactor(lint-context): own source location semantics
  • 864e42a perf(lsp): construct workspace index rules directly
  • 11b4a7d refactor(discovery): share adapter file admission policy
  • 2c7670f fix(lsp): honor per-directory config across workspace features
  • Additional commits viewable in compare view

Updates astral-sh/setup-uv from 9.0.0 to 10.0.1

Release notes

Sourced from astral-sh/setup-uv's releases.

v10.0.1 🌈 Tolerate transient manifest timeouts

Changes

Thank you @​arguile- for making this action more resilient.

🐛 Bug fixes

🧰 Maintenance

📚 Documentation

v10.0.0 🌈 Disable automatic caching for sensitive events and new QOL features

Changes

Another breaking release, directly after v9.0.0 but we think the added security justifies that.

Extra security by default

If you use the default enable-cache: auto this will now DISABLE THE CACHE to protect against cache poisoning for the following events:

  • pull_request_target
  • workflow_run
  • release

You can read the full reasoning in astral-sh/setup-uv#984

version: latest-known

- name: Install the latest version of uv known to setup-uv
  uses: astral-sh/setup-uv@v10.0.0
  with:
    version: "latest-known"

This will now install the latest version with a checksum that is known by this action. The known uv checksums are automatically updated but will take a release of this action to take effect. You won't be always using the latest & greatest but you will have an extra level of security.

Read python version from .tool-versions

- name: Install uv based on the version defined in .tool-versions and also set python
  uses: astral-sh/setup-uv@v10.0.0
  with:
    version-file: "pyproject.toml"
</tr></table> 

... (truncated)

Commits

Updates rvben/rumdl from 0.2.52 to 0.2.55

Release notes

Sourced from rvben/rumdl's releases.

v0.2.55

Fixed

  • lsp: honor per-directory config across workspace features (2c7670f)
  • core: align path-aware document processing across adapters (7285b7a)

Performance

  • lsp: construct workspace index rules directly (864e42a)

Downloads

File Platform Checksum
rumdl-v0.2.55-x86_64-unknown-linux-gnu.tar.gz Linux x86_64 checksum
rumdl-v0.2.55-x86_64-unknown-linux-musl.tar.gz Linux x86_64 (musl) checksum
rumdl-v0.2.55-aarch64-unknown-linux-gnu.tar.gz Linux ARM64 checksum
rumdl-v0.2.55-aarch64-unknown-linux-musl.tar.gz Linux ARM64 (musl) checksum
rumdl-v0.2.55-x86_64-apple-darwin.tar.gz macOS x86_64 checksum
rumdl-v0.2.55-aarch64-apple-darwin.tar.gz macOS ARM64 (Apple Silicon) checksum
rumdl-v0.2.55-x86_64-pc-windows-msvc.zip Windows x86_64 checksum

Installation

Using uv (Recommended)

uv tool install rumdl

Using pip

pip install rumdl

Using pipx

pipx install rumdl

Direct Download

Download the appropriate binary for your platform from the table above, extract it, and add it to your PATH.

v0.2.54

Added

  • action: add a command input to run rumdl fmt (9b59bff)
  • action: add install-only input to skip linting (aa0c604)

... (truncated)

Changelog

Sourced from rvben/rumdl's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

0.2.58 - 2026-08-19

Added

  • wasm: load extends chains from embedder-supplied config files (e7c7d8f)

0.2.57 - 2026-08-18

Fixed

  • MD013: let a sentence open with a number under require-sentence-capital (5060333)
  • lsp: keep a CRLF document's line endings through fixes and code actions (c88a7da)

0.2.56 - 2026-08-18

Fixed

  • MD076: attach its edit to each warning so the CLI reports it fixable (a10f6c8)
  • MD076: analyse each nested list on its own spacing (eb2d9d8)
  • MD064: judge column alignment per list so a nested item keeps its parent's exemption (9ea97d1)
  • MD076: measure a list item's nesting level in columns as the block tracker does (15ba409)
  • MD032: measure list indent in columns so a tab nests and continues an item (bd197b0)
  • MD013: read sentence openers off the parse and honour reference definitions (78bafa9)
  • MD032: measure an HTML opener's indent in columns against every open item (56944fc)
  • MD013: keep links, images, math and HTML whole in sentence reflow (72871b9)
  • code-block-tools: resolve Windows tool names the way Command::new does (a005be4)
  • MD032: let an HTML block or fence at short indent end a list (75d49a8)
  • MD032: keep a Quarto div fence out of the lazy-continuation check (98242fd)
  • MD013: run reflow after every rule that rewrites inline content (aabb420)
  • MD046: classify indented code blocks from the line above's verdict (e8004fb)
  • MD032: treat under-indented text and no-space # lines as lazy continuations (3e60005)
  • code-block-tools: resolve tools in-process instead of spawning which (fb3e5d8)
  • MD057: invalidate cache when link targets change (f6ae68f)
  • MD075: require an outer pipe on orphaned table row candidates (66d8d12)
  • MD034: recognize reference definitions whose label escapes a closing bracket (f024e4d)

0.2.55 - 2026-08-13

Fixed

  • lsp: honor per-directory config across workspace features (2c7670f)
  • core: align path-aware document processing across adapters (7285b7a)

... (truncated)

Commits
  • 4997ff0 chore: bump version to v0.2.55
  • 1900e92 test: normalize path separators in workspace include-scan assertions
  • eb9e49d refactor(lint-context): own ordered list membership
  • e65cc5c refactor(lint-context): own parsed list semantics
  • f9a8980 refactor(lint-context): own rendered heading semantics
  • 06da883 refactor(lint-context): own parsed link semantics
  • 72be0d7 refactor(lint-context): own source location semantics
  • 864e42a perf(lsp): construct workspace index rules directly
  • 11b4a7d refactor(discovery): share adapter file admission policy
  • 2c7670f fix(lsp): honor per-directory config across workspace features
  • Additional commits viewable in compare view

Updates astral-sh/setup-uv from 9.0.0 to 10.0.1

Release notes

Sourced from astral-sh/setup-uv's releases.

v10.0.1 🌈 Tolerate transient manifest timeouts

Changes

Thank you @​arguile- for making this action more resilient.

🐛 Bug fixes

🧰 Maintenance

📚 Documentation

v10.0.0 🌈 Disable automatic caching for sensitive events and new QOL features

Changes

Another breaking release, directly after v9.0.0 but we think the added security justifies that.

Extra security by default

If you use the default enable-cache: auto this will now DISABLE THE CACHE to protect against cache poisoning for the following events:

  • pull_request_target
  • workflow_run
  • release

You can read the full reasoning in astral-sh/setup-uv#984

version: latest-known

- name: Install the latest version of uv known to setup-uv
  uses: astral-sh/setup-uv@v10.0.0
  with:
    version: "latest-known"

This will now install the latest version with a checksum that is known by this action. The known uv checksums are automatically updated but will take a release of this action to take effect. You won't be always using the latest & greatest but you will have an extra level of security.

Read python version from .tool-versions

- name: Install uv based on the version defined in .tool-versions and also set python
  uses: astral-sh/setup-uv@v10.0.0
  with:
    version-file: "pyproject.toml"
</tr></table> 

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…2 updates

Bumps the github-actions group with 2 updates in the / directory: [rvben/rumdl](https://github.com/rvben/rumdl) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv).
Bumps the github-actions group with 2 updates in the /.github/workflows directory: [rvben/rumdl](https://github.com/rvben/rumdl) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv).


Updates `rvben/rumdl` from 0.2.52 to 0.2.55
- [Release notes](https://github.com/rvben/rumdl/releases)
- [Changelog](https://github.com/rvben/rumdl/blob/main/CHANGELOG.md)
- [Commits](rvben/rumdl@9faf469...4997ff0)

Updates `astral-sh/setup-uv` from 9.0.0 to 10.0.1
- [Release notes](https://github.com/astral-sh/setup-uv/releases)
- [Commits](astral-sh/setup-uv@c771a70...20cfd1b)

Updates `rvben/rumdl` from 0.2.52 to 0.2.55
- [Release notes](https://github.com/rvben/rumdl/releases)
- [Changelog](https://github.com/rvben/rumdl/blob/main/CHANGELOG.md)
- [Commits](rvben/rumdl@9faf469...4997ff0)

Updates `astral-sh/setup-uv` from 9.0.0 to 10.0.1
- [Release notes](https://github.com/astral-sh/setup-uv/releases)
- [Commits](astral-sh/setup-uv@c771a70...20cfd1b)

---
updated-dependencies:
- dependency-name: rvben/rumdl
  dependency-version: 0.2.55
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: astral-sh/setup-uv
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: rvben/rumdl
  dependency-version: 0.2.55
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: astral-sh/setup-uv
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 22, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 29, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #17.

@dependabot dependabot Bot closed this Aug 29, 2026
@dependabot
dependabot Bot deleted the dependabot/github_actions/github-actions-d2460a0489 branch August 29, 2026 02:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants