chore(deps): bump the nodejs group with 10 dependencies (#257)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ruben Arts <ruben.arts@hotmail.com>
This commit is contained in:
dependabot[bot]
2026-03-30 14:23:16 +02:00
committed by GitHub
parent e6477eb81d
commit 6ef69835bb
6 changed files with 42288 additions and 57098 deletions
Generated Vendored
+41227 -53386
View File
File diff suppressed because one or more lines are too long
Generated Vendored
+747 -3292
View File
File diff suppressed because it is too large Load Diff
+10 -10
View File
@@ -22,25 +22,25 @@
"author": "Pavel Zwerschke <pavelzw@gmail.com>",
"license": "BSD-3-Clause",
"dependencies": {
"@actions/cache": "^5.0.3",
"@actions/core": "^2.0.2",
"@actions/exec": "^2.0.0",
"@actions/io": "^2.0.0",
"@actions/tool-cache": "^3.0.0",
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
"handlebars": "^4.7.8",
"smol-toml": "^1.6.0",
"untildify": "^6.0.0",
"which": "^6.0.0",
"which": "^6.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.10",
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"@types/which": "^3.0.4",
"eslint": "^9.39.2",
"eslint": "^10.0.1",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
"typescript-eslint": "^8.56.0"
}
}
+301 -405
View File
File diff suppressed because it is too large Load Diff
+2 -4
View File
@@ -39,8 +39,7 @@ export const generateProjectCacheKey = async (cacheKeyPrefix: string) => {
core.debug(`sha: ${sha}`)
return `${cacheKeyPrefix}${getCondaArch()}-${sha}`
} catch (err: unknown) {
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
throw new Error(`Failed to generate cache key: ${err}`)
throw new Error(`Failed to generate cache key`, { cause: err })
}
}
@@ -54,8 +53,7 @@ export const generateGlobalCacheKey = async (cacheKeyPrefix: string) => {
core.debug(`sha: ${sha}`)
return `${cacheKeyPrefix}${getCondaArch()}-${getYearMonth()}-${sha}`
} catch (err: unknown) {
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
throw new Error(`Failed to generate cache key: ${err}`)
throw new Error(`Failed to generate cache key`, { cause: err })
}
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "ES2020" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */,
"target": "ES2022" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */,
"module": "CommonJS" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
"outDir": "./lib" /* Redirect output structure to the directory. */,
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,