Skip to content

Commit ac1b1bc

Browse files
authored
fix: resolve CI failures in dependency PRs
- Fix 6 failing RunnerL0 tests caused by ACTIONS_RUNNER_RETURN_JOB_RESULT_FOR_HOSTED env var being set on GitHub-hosted runners (introduced by PR #4233): - TestRunAsync: clear env var so non-ephemeral test runs with runOnce=false - 5 run-once tests: accept both return code 0 and 100 (TaskResult.Succeeded) - Bump System.Security.Cryptography.Pkcs 10.0.6->10.0.7 (PR #4369) - Bump System.Formats.Asn1 10.0.6->10.0.7 (PR #4369) - Bump System.Security.Cryptography.ProtectedData 10.0.3->10.0.6 (PRs #4363) - Bump System.Text.Encoding.CodePages 10.0.3->10.0.6 (PR #4364) - Bump System.ServiceProcess.ServiceController 10.0.3->10.0.7 (PR #4376) - Bump Microsoft.DevTunnels.Connections 1.3.39->1.3.43 (PR #4375) - Bump @typescript-eslint/eslint-plugin ^8.59.0->^8.59.1 (PR #4382) - Bump @typescript-eslint/parser ^8.59.0->^8.59.1 (PR #4381) - Fix @stylistic/func-call-spacing -> function-call-spacing in eslintrc - Add types:[node] to tsconfig.json for TypeScript 6 compatibility Agent-Logs-Url: https://github.com/actions/runner/sessions/4df39c13-5067-4ae3-bcbc-eacf08a30722
1 parent b06c585 commit ac1b1bc

11 files changed

Lines changed: 308 additions & 5486 deletions

File tree

src/Misc/expressionFunc/hashFiles/.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
],
2727
"camelcase": "off",
2828
"@typescript-eslint/explicit-function-return-type": ["error", {"allowExpressions": true}],
29-
"@stylistic/func-call-spacing": ["error", "never"],
29+
"@stylistic/function-call-spacing": ["error", "never"],
3030
"@typescript-eslint/no-array-constructor": "error",
3131
"@typescript-eslint/no-empty-interface": "error",
3232
"@typescript-eslint/no-explicit-any": "error",

src/Misc/expressionFunc/hashFiles/package-lock.json

Lines changed: 159 additions & 149 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Misc/expressionFunc/hashFiles/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
"devDependencies": {
3838
"@stylistic/eslint-plugin": "^5.10.0",
3939
"@types/node": "^22.0.0",
40-
"@typescript-eslint/eslint-plugin": "^8.59.0",
41-
"@typescript-eslint/parser": "^8.59.0",
40+
"@typescript-eslint/eslint-plugin": "^8.59.1",
41+
"@typescript-eslint/parser": "^8.59.1",
4242
"@vercel/ncc": "^0.38.3",
4343
"eslint": "^8.47.0",
4444
"eslint-plugin-github": "^4.10.2",

src/Misc/expressionFunc/hashFiles/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
77
"strict": true, /* Enable all strict type-checking options. */
88
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
9-
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
9+
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
10+
"types": ["node"] /* Include Node.js type definitions. */
1011
},
1112
"exclude": ["node_modules", "**/*.test.ts"]
1213
}

0 commit comments

Comments
 (0)