Skip to content

Update CI dependencies - #378

Merged
renovate[bot] merged 1 commit into
masterfrom
renovate/ci-dependencies
Aug 1, 2026
Merged

Update CI dependencies#378
renovate[bot] merged 1 commit into
masterfrom
renovate/ci-dependencies

Conversation

@renovate

@renovate renovate Bot commented Aug 1, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Pending Age Confidence
actions/cache action minor v6.0.0v6.1.0 age confidence
actions/checkout action patch v7.0.0v7.0.1 age confidence
camptocamp/tag-publish minor 1.1.11.2.2 age confidence
codespell-project/codespell repository patch v2.4.2v2.4.3 age confidence
pre-commit patch ==4.6.0==4.6.1 age confidence
prettier (source) minor 3.8.43.9.6 age confidence
prettier-plugin-sh (source) minor 0.18.10.19.0 age confidence
python-jsonschema/check-jsonschema repository patch 0.37.30.37.4 age confidence
renovatebot/pre-commit-hooks repository minor 43.242.043.280.3 43.288.0 (+18) age confidence
tag-publish minor ==1.1.1==1.2.2 age confidence

Note: The pre-commit manager in Renovate is not supported by the pre-commit maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.


Release Notes

actions/cache (actions/cache)

v6.1.0

Compare Source

What's Changed

Full Changelog: actions/cache@v6...v6.1.0

actions/checkout (actions/checkout)

v7.0.1

Compare Source

camptocamp/tag-publish (camptocamp/tag-publish)

v1.2.2

Compare Source

1.2.2 (2026-07-17)
New feature

v1.2.1

Compare Source

1.2.1 (2026-07-17)

Fixed bugs

v1.2.0

Compare Source

1.2.0 (2026-07-16)

New feature

Documentation

Dependency update

Chore

Changes that shouldn't affect the users like continuous integration updates

codespell-project/codespell (codespell-project/codespell)

v2.4.3

Compare Source

What's Changed

New Contributors

Full Changelog: codespell-project/codespell@v2.4.2...v2.4.3

pre-commit/pre-commit (pre-commit)

v4.6.1

Compare Source

==================

Fixes
prettier/prettier (prettier)

v3.9.6

Compare Source

v3.9.5

Compare Source

diff

Markdown: Cap ordered list mark at 999,999,999 (#​19351 by @​tats-u)

CommonMark parsers only support ordered list item numbers up to 999,999,999.

With this change, Prettier now caps the ordered list item number at 999,999,999 to ensure that the output is correctly parsed as an ordered list by CommonMark parsers. Numbers larger than 999,999,999 are not parsed as list item numbers and are left unchanged in the output:

<!-- Input -->
999999998. text
999999998. text
999999998. text
999999998. text

1234567890123456789012) text

<!-- Prettier 3.9.4 -->
999999998. text
999999999. text
1000000000. text
1000000001. text

1234567890123456789012) text

<!-- Prettier 3.9.5 -->
999999998. text
999999999. text
999999999. text
999999999. text

1234567890123456789012) text
Markdown: Avoid corrupting empty link with title (#​19487 by @​andersk)

Do not remove <> from an inline link or image with an empty URL and a title, as this removal would change its interpretation.

<!-- Input -->
[link](<> "title")

<!-- Prettier 3.9.4 -->
[link]( "title")

<!-- Prettier 3.9.5 -->
[link](<> "title")
Less: Remove extra spaces after [ in map lookups (#​19503 by @​kovsu)
// Input
.foo {
  color: #theme[ primary];
  color: #theme[@&#8203;name];
  color: #theme[@&#8203;@&#8203;name];
}

// Prettier 3.9.4
.foo {
  color: #theme[ primary];
  color: #theme[ @&#8203;name];
  color: #theme[ @&#8203;@&#8203;name];
}

// Prettier 3.9.5
.foo {
  color: #theme[primary];
  color: #theme[@&#8203;name];
  color: #theme[@&#8203;@&#8203;name];
}
CSS: Prevent addition space in type() with + (#​19516 by @​bigandy)

This fixes the addition space before + in CSS type() declaration. For example type(<number>+) was being converted into type(<number> +) which is invalid CSS and does not work.

/* Input */
div {
  border-radius: attr(br type(<length>+));
}

/* Prettier 3.9.4 */
div {
  border-radius: attr(br type(<length> +));
}

/* Prettier 3.9.5 */
div {
  border-radius: attr(br type(<length>+));
}
Less: Remove spaces between merge markers and colons (#​19517 by @​kovsu)
// Input
a {
  box-shadow  +  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.4
a {
  box-shadow+  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.5
a {
  box-shadow+: 0 0 1px #&#8203;000;
}
Markdown: Preserve wiki links with aliases (#​19527 by @​kovsu)
<!-- Input -->
[[Foo:Bar]]

<!-- Prettier 3.9.4 -->
[[Foo]]

<!-- Prettier 3.9.5 -->
[[Foo:Bar]]
TypeScript: Fix comments being dropped on shorthand type import/export specifiers (#​19565 by @​kirkwaiblinger)
// Input
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";

// Prettier 3.9.4
Error: Comment "comment" was not printed. Please report this error!

// Prettier 3.9.5
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";
Miscellaneous: Preserving comments' placement property (#​19567 by @​Janther)

Prettier@​3.9.0 deleted an undocumented property on comments, which was already used by plugins, comment.placement is now available again after comment attach.

Flow: Stop enforcing empty module declaration to break (#​19568 by @​fisker)
// Input
declare module "foo" {}

// Prettier 3.9.4
declare module "foo" {
}

// Prettier 3.9.5
declare module "foo" {}
Angular: Support expression for exhaustive typechecking (#​19571 by @​fisker)
<!-- Input -->
@&#8203;switch (state.mode) {
  @&#8203;default never(state);
}

<!-- Prettier 3.9.4 -->
@&#8203;switch (state.mode) {
  @&#8203;default never;
}

<!-- Prettier 3.9.5 -->
@&#8203;switch (state.mode) {
  @&#8203;default never(state);
}
TypeScript: Ignore comments inside mapped type when checking type parameter comments (#​19572 by @​fisker)
// Input
foo<{
  // comment
  [key in keyof Foo]: number
}>();

// Prettier 3.9.4
foo<
  {
    // comment
    [key in keyof Foo]: number;
  }
>();

// Prettier 3.9.5
foo<{
  // comment
  [key in keyof Foo]: number;
}>();
Less: Fix adjacent block comments being corrupted (#​19574 by @​kovsu)
// Input
/* a *//* b */
/* a */* {
  color: red;
}

// Prettier 3.9.4
/* a */
/* b */
/* a * {
  color: red;
}

// Prettier 3.9.5
/* a */ /* b */
/* a */
* {
  color: red;
}
JavaScript: Handle dangling comments in SwitchStatement (#​19581 by @​fisker)
// Input
switch (foo) {
 // comment
}

// Prettier 3.9.4
switch (
  foo
  // comment
) {
}

// Prettier 3.9.5
switch (foo) {
  // comment
}
TypeScript: Remove space in comment-only object type (#​19583 by @​fisker)
// Input
var foo = {
  /* comment */
};
type Foo = {
  /* comment */
};

// Prettier 3.9.4
var foo = {/* comment */};
type Foo = { /* comment */ };

// Prettier 3.9.5
var foo = {/* comment */};
type Foo = {/* comment */};

v3.9.4

Compare Source

v3.9.3

Compare Source

v3.9.2

Compare Source

v3.9.1

Compare Source

v3.9.0

Compare Source

diff

🔗 Release Notes

v3.8.5

Compare Source

un-ts/prettier (prettier-plugin-sh)

v0.19.0

Compare Source

Minor Changes
python-jsonschema/check-jsonschema (python-jsonschema/check-jsonschema)

v0.37.4

Compare Source

  • Update vendored schemas: bitbucket-pipelines, buildkite, changie, github-workflows,
    gitlab-ci, mergify, renovate, snapcraft, travis, woodpecker-ci (2026-06-29)
renovatebot/pre-commit-hooks (renovatebot/pre-commit-hooks)

v43.280.3

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/43.280.3 for more changes

v43.280.2

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/43.280.2 for more changes

v43.280.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/43.280.0 for more changes

v43.279.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/43.279.1 for more changes

v43.279.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/43.279.0 for more changes

v43.278.5

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/43.278.5 for more changes

v43.278.4

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/43.278.4 for more changes

v43.278.3

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/43.278.3 for more changes

v43.278.2

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/43.278.2 for more changes

v43.278.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/43.278.1 for more changes

v43.277.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/43.277.1 for more changes

v43.277.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/43.277.0 for more changes

[`v43.276

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Europe/Zurich)

  • Branch creation
    • "after 5pm on the first day of the month,on the first day of the month"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

@renovate renovate Bot added the dependencies Update the dependencies label Aug 1, 2026
@renovate
renovate Bot enabled auto-merge (squash) August 1, 2026 01:24
@renovate
renovate Bot merged commit 80d1a0d into master Aug 1, 2026
5 checks passed
@renovate
renovate Bot deleted the renovate/ci-dependencies branch August 1, 2026 01:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Update the dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants