chore(deps): roll up dependabot updates

This commit is contained in:
Kevin Stillhammer 2026-06-03 09:43:47 +02:00
parent c4fcbafce4
commit e808723e51
No known key found for this signature in database
6 changed files with 1595 additions and 1321 deletions

View file

@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.7/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
"assist": {
"actions": {
"source": {

11
dist/save-cache/index.cjs generated vendored
View file

@ -62342,9 +62342,14 @@ function skipComment(str, ptr) {
}
function skipVoid(str, ptr, banNewLines, banComments) {
let c;
while ((c = str[ptr]) === " " || c === " " || !banNewLines && (c === "\n" || c === "\r" && str[ptr + 1] === "\n"))
ptr++;
return banComments || c !== "#" ? ptr : skipVoid(str, skipComment(str, ptr), banNewLines);
while (1) {
while ((c = str[ptr]) === " " || c === " " || !banNewLines && (c === "\n" || c === "\r" && str[ptr + 1] === "\n"))
ptr++;
if (banComments || c !== "#")
break;
ptr = skipComment(str, ptr);
}
return ptr;
}
function skipUntil(str, ptr, sep7, end, banNewLines = false) {
if (!end) {

1127
dist/setup/index.cjs generated vendored

File diff suppressed because it is too large Load diff

1116
dist/update-known-checksums/index.cjs generated vendored

File diff suppressed because it is too large Load diff

650
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -35,19 +35,19 @@
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
"@renovatebot/pep440": "^4.2.2",
"smol-toml": "^1.6.0",
"undici": "^7.24.2"
"smol-toml": "^1.6.1",
"undici": "^8.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@biomejs/biome": "^2.4.10",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.0",
"@types/semver": "^7.7.1",
"@vercel/ncc": "^0.38.4",
"esbuild": "^0.27.4",
"esbuild": "^0.27.5",
"jest": "^30.3.0",
"js-yaml": "^4.1.1",
"ts-jest": "^29.4.6",
"ts-jest": "^29.4.9",
"typescript": "^5.9.3"
}
}