Skip to content

chore(deps): bump the github-actions group across 1 directory with 3 updates#1630

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/github-actions-7dac560ed8
Open

chore(deps): bump the github-actions group across 1 directory with 3 updates#1630
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/github-actions-7dac560ed8

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jun 7, 2026

Bumps the github-actions group with 3 updates in the / directory: @astrojs/vercel, astro and vercel.

Updates @astrojs/vercel from 10.0.7 to 10.0.8

Release notes

Sourced from @​astrojs/vercel's releases.

@​astrojs/vercel@​10.0.8

Patch Changes

  • Updated dependencies [f732f3c]:
    • @​astrojs/internal-helpers@​0.10.0
Changelog

Sourced from @​astrojs/vercel's changelog.

10.0.8

Patch Changes

  • Updated dependencies [f732f3c]:
    • @​astrojs/internal-helpers@​0.10.0
Commits

Updates astro from 6.3.8 to 6.4.2

Release notes

Sourced from astro's releases.

astro@6.4.2

Patch Changes

  • #16889 b94bcfd Thanks @​Princesseuh! - Fixes a plugins is not iterable crash when using a pre-6.0 @astrojs/mdx alongside integrations (e.g. Starlight) that set markdown.remarkPlugins, markdown.rehypePlugins, or markdown.remarkRehype.

  • #16878 b9f6bb9 Thanks @​fkatsuhiro! - Fixes an issue where on-demand (SSR) dynamic routes would return 404 when a prerendered dynamic route with the same URL pattern was sorted first alphabetically. In production builds with @astrojs/node adapter, if [a_prebuild].astro (prerender=true) came before [b_ssr].astro alphabetically, requests to URLs not in the prerendered route's static paths would 404 instead of falling through to the SSR route. The fix adds fallthrough logic so that when a prerendered dynamic route matches but can't serve the request, Astro tries subsequent matching routes.

astro@6.4.0

Minor Changes

  • #16468 4cff3a1 Thanks @​matthewp! - Adds a new preserveBuildServerDir adapter feature

    Adapters can now set preserveBuildServerDir: true in their adapter features to keep the dist/server/ directory structure for static builds, mirroring the existing preserveBuildClientDir option. This is useful for adapters that require a consistent dist/client/ and dist/server/ layout regardless of build output type.

    setAdapter({
      name: 'my-adapter',
      adapterFeatures: {
        buildOutput,
        preserveBuildClientDir: true,
        preserveBuildServerDir: true,
      },
    });
  • #16848 f732f3c Thanks @​Princesseuh! - Adds a new markdown.processor configuration option, allowing you to choose an alternative Markdown processor.

    Websites with many Markdown/MDX files tend to be slow to build because the unified ecosystem (e.g., remark, rehype) is slow to process. This feature introduces the ability to replace this part of the build pipeline with another processor.

    The default processor is unified(). This means that existing configurations remain unchanged and your remark/rehype plugins continue to work.

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import { unified } from '@astrojs/markdown-remark';
    import remarkToc from 'remark-toc';
    export default defineConfig({
    markdown: {
    processor: unified({
    remarkPlugins: [remarkToc],
    }),
    },
    });

    In addition to this new configuration option, Astro provides a new alternative processor based on Rust: Sätteri. You can choose to use it now by installing @astrojs/markdown-satteri, importing the satteri() processor, and adapting your existing configuration:

    // astro.config.mjs

... (truncated)

Changelog

Sourced from astro's changelog.

6.4.2

Patch Changes

  • #16889 b94bcfd Thanks @​Princesseuh! - Fixes a plugins is not iterable crash when using a pre-6.0 @astrojs/mdx alongside integrations (e.g. Starlight) that set markdown.remarkPlugins, markdown.rehypePlugins, or markdown.remarkRehype.

  • #16878 b9f6bb9 Thanks @​fkatsuhiro! - Fixes an issue where on-demand (SSR) dynamic routes would return 404 when a prerendered dynamic route with the same URL pattern was sorted first alphabetically. In production builds with @astrojs/node adapter, if [a_prebuild].astro (prerender=true) came before [b_ssr].astro alphabetically, requests to URLs not in the prerendered route's static paths would 404 instead of falling through to the SSR route. The fix adds fallthrough logic so that when a prerendered dynamic route matches but can't serve the request, Astro tries subsequent matching routes.

6.4.1

Patch Changes

  • #16883 eeb064c Thanks @​Princesseuh! - Restores the astro/jsx/rehype.js entry point so that older versions of @astrojs/mdx continue to work when used with Astro 6.x. This entry point will be removed in Astro 7.0.

6.4.0

Minor Changes

  • #16468 4cff3a1 Thanks @​matthewp! - Adds a new preserveBuildServerDir adapter feature

    Adapters can now set preserveBuildServerDir: true in their adapter features to keep the dist/server/ directory structure for static builds, mirroring the existing preserveBuildClientDir option. This is useful for adapters that require a consistent dist/client/ and dist/server/ layout regardless of build output type.

    setAdapter({
      name: 'my-adapter',
      adapterFeatures: {
        buildOutput,
        preserveBuildClientDir: true,
        preserveBuildServerDir: true,
      },
    });
  • #16848 f732f3c Thanks @​Princesseuh! - Adds a new markdown.processor configuration option, allowing you to choose an alternative Markdown processor.

    Websites with many Markdown/MDX files tend to be slow to build because the unified ecosystem (e.g., remark, rehype) is slow to process. This feature introduces the ability to replace this part of the build pipeline with another processor.

    The default processor is unified(). This means that existing configurations remain unchanged and your remark/rehype plugins continue to work.

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import { unified } from '@astrojs/markdown-remark';
    import remarkToc from 'remark-toc';
    export default defineConfig({
    markdown: {
    processor: unified({
    remarkPlugins: [remarkToc],
    }),

... (truncated)

Commits

Updates vercel from 54.5.1 to 54.6.1

Release notes

Sourced from vercel's releases.

vercel@54.6.1

Patch Changes

  • 1444502: Support discovering experimentalServices from Build Output API config during vercel build.
  • 7ba4713: Reorder vercel env add to ask whether a value is sensitive before collecting the value and selecting environments. Sensitive adds hide Development; teams with the sensitive env policy still prompt, and non-sensitive adds are limited to Development with clearer messaging.
  • Updated dependencies [ab0e5aa]
  • Updated dependencies [4f782b1]
    • @​vercel/backends@​0.8.3
    • @​vercel/express@​0.1.94
    • @​vercel/hono@​0.2.87
    • @​vercel/next@​4.17.5
    • @​vercel/node@​5.8.8
    • @​vercel/redwood@​2.4.15
    • @​vercel/remix-builder@​5.8.4
    • @​vercel/python@​6.44.0
    • @​vercel/static-build@​2.9.33
    • @​vercel/elysia@​0.1.84
    • @​vercel/fastify@​0.1.87
    • @​vercel/h3@​0.1.93
    • @​vercel/koa@​0.1.67
    • @​vercel/nestjs@​0.2.88

vercel@54.6.0

Minor Changes

  • af3e0bd: adding version node + cli version to top of every command

Patch Changes

  • 6495585: [services] drop top-level env support for the new service-ref shape for services.
  • Updated dependencies [6495585]
    • @​vercel/build-utils@​13.26.4
    • @​vercel/backends@​0.8.2
    • @​vercel/elysia@​0.1.83
    • @​vercel/express@​0.1.93
    • @​vercel/fastify@​0.1.86
    • @​vercel/go@​3.8.0
    • @​vercel/h3@​0.1.92
    • @​vercel/hono@​0.2.86
    • @​vercel/hydrogen@​1.3.8
    • @​vercel/koa@​0.1.66
    • @​vercel/nestjs@​0.2.87
    • @​vercel/next@​4.17.4
    • @​vercel/node@​5.8.7
    • @​vercel/python@​6.43.3
    • @​vercel/redwood@​2.4.14
    • @​vercel/remix-builder@​5.8.3
    • @​vercel/ruby@​2.4.0
    • @​vercel/rust@​1.3.0
    • @​vercel/static-build@​2.9.33
Changelog

Sourced from vercel's changelog.

54.6.1

Patch Changes

  • 1444502: Support discovering experimentalServices from Build Output API config during vercel build.
  • 7ba4713: Reorder vercel env add to ask whether a value is sensitive before collecting the value and selecting environments. Sensitive adds hide Development; teams with the sensitive env policy still prompt, and non-sensitive adds are limited to Development with clearer messaging.
  • Updated dependencies [ab0e5aa]
  • Updated dependencies [4f782b1]
    • @​vercel/backends@​0.8.3
    • @​vercel/express@​0.1.94
    • @​vercel/hono@​0.2.87
    • @​vercel/next@​4.17.5
    • @​vercel/node@​5.8.8
    • @​vercel/redwood@​2.4.15
    • @​vercel/remix-builder@​5.8.4
    • @​vercel/python@​6.44.0
    • @​vercel/static-build@​2.9.33
    • @​vercel/elysia@​0.1.84
    • @​vercel/fastify@​0.1.87
    • @​vercel/h3@​0.1.93
    • @​vercel/koa@​0.1.67
    • @​vercel/nestjs@​0.2.88

54.6.0

Minor Changes

  • af3e0bd: adding version node + cli version to top of every command

Patch Changes

  • 6495585: [services] drop top-level env support for the new service-ref shape for services.
  • Updated dependencies [6495585]
    • @​vercel/build-utils@​13.26.4
    • @​vercel/backends@​0.8.2
    • @​vercel/elysia@​0.1.83
    • @​vercel/express@​0.1.93
    • @​vercel/fastify@​0.1.86
    • @​vercel/go@​3.8.0
    • @​vercel/h3@​0.1.92
    • @​vercel/hono@​0.2.86
    • @​vercel/hydrogen@​1.3.8
    • @​vercel/koa@​0.1.66
    • @​vercel/nestjs@​0.2.87
    • @​vercel/next@​4.17.4
    • @​vercel/node@​5.8.7
    • @​vercel/python@​6.43.3
    • @​vercel/redwood@​2.4.14
    • @​vercel/remix-builder@​5.8.3
    • @​vercel/ruby@​2.4.0

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 7, 2026
@vercel
Copy link
Copy Markdown

vercel Bot commented Jun 7, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
openresource-dev Error Error Jun 7, 2026 7:23am

@dependabot dependabot Bot changed the title chore(deps): bump the github-actions group with 3 updates chore(deps): bump the github-actions group across 1 directory with 3 updates Jun 7, 2026
…updates

Bumps the github-actions group with 3 updates in the / directory: [@astrojs/vercel](https://github.com/withastro/astro/tree/HEAD/packages/integrations/vercel), [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) and [vercel](https://github.com/vercel/vercel/tree/HEAD/packages/cli).


Updates `@astrojs/vercel` from 10.0.7 to 10.0.8
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/vercel/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/vercel@10.0.8/packages/integrations/vercel)

Updates `astro` from 6.3.8 to 6.4.2
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@6.4.2/packages/astro)

Updates `vercel` from 54.5.1 to 54.6.1
- [Release notes](https://github.com/vercel/vercel/releases)
- [Changelog](https://github.com/vercel/vercel/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/vercel/vercel/commits/vercel@54.6.1/packages/cli)

---
updated-dependencies:
- dependency-name: "@astrojs/vercel"
  dependency-version: 10.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: astro
  dependency-version: 6.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: vercel
  dependency-version: 54.6.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/github-actions-7dac560ed8 branch from 16d06ef to df1af39 Compare June 7, 2026 07:22
@julien-deramond
Copy link
Copy Markdown
Member

On hold until withastro/starlight#3923 is released. Otherwise, this PR should add "@astrojs/markdown-remark": "^7.2.0" to the deps of this project.

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 javascript Pull requests that update javascript code on hold

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant