Skip to content

Commit 282da36

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/dot-github/actions/fix/types/node-24.9.0
2 parents 9b6be83 + ae2c4c2 commit 282da36

File tree

12 files changed

+68
-68
lines changed

12 files changed

+68
-68
lines changed

.github/actions/auth/package-lock.json

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

.github/actions/auth/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"type": "module",
1515
"dependencies": {
1616
"@actions/core": "^1.11.1",
17-
"playwright": "^1.56.0"
17+
"playwright": "^1.56.1"
1818
},
1919
"devDependencies": {
20-
"@types/node": "^24.7.1",
20+
"@types/node": "^24.9.0",
2121
"typescript": "^5.9.3"
2222
}
2323
}

.github/actions/file/package-lock.json

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

.github/actions/file/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@octokit/plugin-throttling": "^11.0.2"
1919
},
2020
"devDependencies": {
21-
"@types/node": "^24.7.1",
21+
"@types/node": "^24.9.0",
2222
"typescript": "^5.9.3"
2323
}
2424
}

.github/actions/find/package-lock.json

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

.github/actions/find/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"dependencies": {
1616
"@actions/core": "^1.11.1",
1717
"@axe-core/playwright": "^4.10.2",
18-
"playwright": "^1.56.0"
18+
"playwright": "^1.56.1"
1919
},
2020
"devDependencies": {
21-
"@types/node": "^24.7.1",
21+
"@types/node": "^24.9.0",
2222
"typescript": "^5.9.3"
2323
}
2424
}

.github/actions/find/src/findForUrl.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ export async function findForUrl(url: string, authContext?: AuthContext): Promis
1616
findings = rawFindings.violations.map(violation => ({
1717
scannerType: 'axe',
1818
url,
19-
html: violation.nodes[0].html,
20-
problemShort: violation.help.toLowerCase().replace(/[']/g, '’'),
21-
problemUrl: violation.helpUrl.replace(/[']/g, '’'),
19+
html: violation.nodes[0].html.replace(/'/g, "'"),
20+
problemShort: violation.help.toLowerCase().replace(/'/g, "'"),
21+
problemUrl: violation.helpUrl.replace(/'/g, "'"),
2222
ruleId: violation.id,
23-
solutionShort: violation.description.toLowerCase().replace(/[']/g, '’'),
24-
solutionLong: violation.nodes[0].failureSummary?.replace(/[']/g, '’')
23+
solutionShort: violation.description.toLowerCase().replace(/'/g, "'"),
24+
solutionLong: violation.nodes[0].failureSummary?.replace(/'/g, "'")
2525
}));
2626
} catch (e) {
2727
// do something with the error

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ The a11y scanner leverages Copilot coding agent, which can be configured with cu
112112
- Repository-wide: `.github/copilot-instructions.md`
113113
- Directory/file-scoped: `.github/instructions/*.instructions.md`
114114

115-
📚 [Adding repository custom instructions](https://docs.github.com/en/copilot/how-tos/configure-custom-instructions/add-repository-instructions) | [Copilot .instructions.md support](https://github.blog/changelog/2025-07-23-github-copilot-coding-agent-now-supports-instructions-md-custom-instructions/) | [Copilot agents.md support](https://github.blog/changelog/2025-08-28-copilot-coding-agent-now-supports-agents-md-custom-instructions)
115+
📚 [Adding repository custom instructions](https://docs.github.com/en/copilot/how-tos/configure-custom-instructions/add-repository-instructions) | [Copilot .instructions.md support](https://github.blog/changelog/2025-07-23-github-copilot-coding-agent-now-supports-instructions-md-custom-instructions/) | [Copilot agents.md support](https://github.blog/changelog/2025-08-28-copilot-coding-agent-now-supports-agents-md-custom-instructions) | [Optimizing GitHub Copilot for accessibility](https://accessibility.github.com/documentation/guide/copilot-instructions)
116116

117117
---
118118

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"@actions/core": "^1.11.1",
2020
"@octokit/core": "^7.0.5",
2121
"@octokit/plugin-throttling": "^11.0.2",
22-
"@octokit/types": "^15.0.0",
23-
"@types/node": "^24.7.1",
22+
"@octokit/types": "^15.0.1",
23+
"@types/node": "^24.9.0",
2424
"vitest": "^3.2.4"
2525
}
2626
}

0 commit comments

Comments
 (0)