Skip to content

build(deps): bump the actions group with 3 updates - #436

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions-f10d123d05
Open

build(deps): bump the actions group with 3 updates#436
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions-f10d123d05

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the actions group with 3 updates: hustcer/setup-nu, astral-sh/setup-uv and cross-platform-actions/action.

Updates hustcer/setup-nu from 3.26 to 3.27

Release notes

Sourced from hustcer/setup-nu's releases.

v3.27

[3.27] - 2026-08-16

Bug Fixes

  • Correct commit SHA pinning and release pagination (#220)
  • Correct version range handling, check-latest and release fallback (#221)
  • Harden plugin registration, token handling and API pagination (#222)
  • Stop polluting the workspace and the user's Nu config (#223)

Features

  • Support pinned commit sha (#219)

Testing

  • Add a regression suite for release resolution and plugin registration (#224)

Deps

  • Upgrade @​vercel/ncc,globby and fix all pnpm audit warnings

New Contributors

Full Changelog: hustcer/setup-nu@v3.26...v3.27

Changelog

Sourced from hustcer/setup-nu's changelog.

Changelog

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

[3.27] - 2026-08-16

Bug Fixes

  • Correct commit SHA pinning and release pagination (#220)
  • Correct version range handling, check-latest and release fallback (#221)
  • Harden plugin registration, token handling and API pagination (#222)
  • Stop polluting the workspace and the user's Nu config (#223)

Features

  • Support pinned commit sha (#219)

Testing

  • Add a regression suite for release resolution and plugin registration (#224)

Deps

  • Upgrade @​vercel/ncc,globby and fix all pnpm audit warnings

[3.26] - 2026-08-05

Miscellaneous Tasks

  • Bump undici from 6.23.0 to 8.7.0 (#217)

Deps

  • Upgrade undici,semver, & @​vercel/ncc
  • Upgrade globby,undici,@​vercel/ncc & semver
  • Bump actions/checkout to v7 (#216)
  • Upgrade lefthook,@​types/node & @​biomejs/biome
  • Upgrade globby,undici & @​biomejs/biome

[3.25] - 2026-06-03

Miscellaneous Tasks

  • Pin pnpm to v10 in workflows
  • Update Nu version matrix for workflows

Deps

  • Upgrade globby, typescript & undici
  • Upgrade typescript,lefthook,@​types/node,@​biomejs/biome,undici & @​actions/core
  • Upgrade undici,semver,lefthook,@​types/node & @​biomejs/biome

... (truncated)

Commits
  • 9215c80 Bump to v3.27
  • 97e718f ci skip
  • f8b70bd test: add a regression suite for release resolution and plugin registration (...
  • 8dd8c09 fix: stop polluting the workspace and the user's Nu config (#223)
  • c18baa5 fix: harden plugin registration, token handling and API pagination (#222)
  • 0a59049 fix: correct version range handling, check-latest and release fallback (#221)
  • e0fce91 fix: correct commit SHA pinning and release pagination (#220)
  • c11c3a5 deps: Upgrade @​vercel/ncc,globby and fix all pnpm audit warnings
  • 7e849a5 feat(nushell): support pinned commit sha (#219)
  • See full diff 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 cross-platform-actions/action from 1.3.0 to 1.4.0

Release notes

Sourced from cross-platform-actions/action's releases.

Cross Platform Action 1.4.0

Added

  • Add support for FreeBSD on RISC-V 64 (riscv64) (#36)
  • Add support for NetBSD on VAX, running on the SIMH simulator
  • Add support for NetBSD 11.0 (#154)

Changed

  • OpenBSD on ARM64 now boots with the same EDK II UEFI firmware (uefi.fd) as every other ARM64 guest, instead of a separate Linaro UEFI build. The QEMU machine type for OpenBSD on ARM64 is now virt,acpi=off, which makes the kernel fall back to the device tree instead of hanging during ACPI attach. This removes the dependency on the Linaro release server, which no longer exists

Fixed

  • Don't log the Tearing down VM group when shutdown_vm is false, since the VM is not being torn down in that case (#109)
  • The "Start VM" step could keep running for hours when the VM failed to boot (#158). Waiting for the VM to become ready is now bounded by an actual wall clock timeout, instead of by a number of connection attempts, and a single SSH connection attempt is bounded by ConnectTimeout.
  • The post job step now reports when the console log of the VM is missing or empty, instead of silently printing nothing (#158)
  • A reboot of a guest that dies instead of rebooting now fails after roughly 20 seconds, instead of after 13 minutes. The SSH session that issues the reboot is bounded by ServerAliveInterval, so it no longer blocks for the full TCP retransmission time, and waiting for the VM to come back up is given up on as soon as the guest announces a kernel panic on its serial console
  • Advanced Matrix Extensions (AMX) is no longer exposed to the guests on x86-64, so which runner a job happens to get no longer decides whether the VM boots (#158). Kernels released before AMX existed fault as soon as userland starts, which affected NetBSD 9.4 and 10.1 and FreeBSD 12.4 on the runners that have it
Changelog

Sourced from cross-platform-actions/action'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.

[Unreleased]

Changed

  • NetBSD images download around 45% smaller -- 11.0 x86-64 goes from 497 MiB to 268 MiB -- which is most of what a NetBSD job spends on setup (#151)
  • Every guest becomes usable sooner, by up to 8 seconds, because the action no longer waits on a readiness probe it sent before the guest was listening
  • NetBSD guests are logged into without a credential, so no SSH key is generated and no resources disk is built to carry one. A custom image supplied through image_url still gets both, since it may expect them

Added

  • A variant input, selecting a named configuration of a platform. Defaults to default, which boots exactly as before, so no existing workflow changes. See Variants
  • The microvm variant for NetBSD on x86-64, which reaches a usable guest in roughly half the time. It is opt-in because it changes the hardware the guest sees: the root disk becomes ld0 rather than sd0, there is no PCI bus to inspect, and uname -v reports a MICROVM kernel. Asking for it where it cannot be booted is an error, not a slow boot
  • Log a breakdown of how long each phase of setting up the VM took, together with how long the VM took to become reachable over SSH

Fixed

  • 5-level paging (LA57) is no longer exposed to the guests on x86-64 (#158). FreeBSD 13.0 enables 5-level paging whenever the CPU reports it and panics in the trampoline that switches to it, so every job that landed on an Intel runner from Ice Lake onwards failed to boot
  • STIBP always-on mode is no longer exposed to the guests on x86-64 (#158). Some of the AMD runners report it without the STIBP and IBRS bits that normally come with it, which made DragonFly BSD write IA32_SPEC_CTRL and take a general protection fault while booting

Security

  • The guest's SSH port is only forwarded to the runner's loopback address. It was previously bound to every interface, making the guest reachable from anything that could reach the runner

[1.4.0] - 2026-08-10

Added

  • Add support for FreeBSD on RISC-V 64 (riscv64) (#36)

... (truncated)

Commits
  • 24ef01d Release 1.4.0
  • ca658ec Bump OpenBSD
  • de7ca38 Update changelog
  • f529a9b Fix #154: Add support for NetBSD 11.0
  • 9a8bf0a Attach two 2 GB scratch disks to the NetBSD/vax VM
  • 9ff5d24 Add support for NetBSD on VAX via the SIMH simulator
  • 48a3280 [no ci] Indicate the readme applies to master and not the latest release
  • 9bc6a97 Don't expose AMX to the guests
  • 41fae45 Fail fast when a guest crashes while rebooting
  • c84882c Log the CPU of the host
  • Additional commits viewable in compare view

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

Bumps the actions group with 3 updates: [hustcer/setup-nu](https://github.com/hustcer/setup-nu), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [cross-platform-actions/action](https://github.com/cross-platform-actions/action).


Updates `hustcer/setup-nu` from 3.26 to 3.27
- [Release notes](https://github.com/hustcer/setup-nu/releases)
- [Changelog](https://github.com/hustcer/setup-nu/blob/main/CHANGELOG.md)
- [Commits](hustcer/setup-nu@f3fd653...9215c80)

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 `cross-platform-actions/action` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/cross-platform-actions/action/releases)
- [Changelog](https://github.com/cross-platform-actions/action/blob/master/changelog.md)
- [Commits](cross-platform-actions/action@5ea7e8e...24ef01d)

---
updated-dependencies:
- dependency-name: hustcer/setup-nu
  dependency-version: '3.27'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: astral-sh/setup-uv
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: cross-platform-actions/action
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: 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 23, 2026
@codecov

codecov Bot commented Aug 23, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 92.39%. Comparing base (7e094a2) to head (1fa5b3d).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #436   +/-   ##
=======================================
  Coverage   92.39%   92.39%           
=======================================
  Files          23       23           
  Lines        3802     3802           
=======================================
  Hits         3513     3513           
  Misses        289      289           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

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