Skip to content

Commit 43e5a8f

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/dot-github/actions/find/axe-core/playwright-4.11.0
2 parents 385b78b + d00fadd commit 43e5a8f

File tree

5 files changed

+356
-430
lines changed

5 files changed

+356
-430
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export async function findForUrl(url: string, authContext?: AuthContext): Promis
99
const context = await browser.newContext(contextOptions);
1010
const page = await context.newPage();
1111
await page.goto(url);
12+
console.log(`Scanning ${page.url()}`);
1213

1314
let findings: Finding[] = [];
1415
try {

.github/actions/find/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default async function () {
1414

1515
let findings = [];
1616
for (const url of urls) {
17-
core.info(`Scanning ${url}`);
17+
core.info(`Preparing to scan ${url}`);
1818
const findingsForUrl = await findForUrl(url, authContext);
1919
if (findingsForUrl.length === 0) {
2020
core.info(`No accessibility gaps were found on ${url}`);

.github/dependabot.yml

Lines changed: 37 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -4,46 +4,49 @@
44
version: 2
55
updates:
66
- package-ecosystem: "npm"
7-
directory: "/"
8-
schedule:
9-
interval: "weekly"
10-
- package-ecosystem: "npm"
11-
directory: "/.github/actions/auth"
12-
schedule:
13-
interval: "weekly"
14-
- package-ecosystem: "npm"
15-
directory: "/.github/actions/find"
16-
schedule:
17-
interval: "weekly"
18-
- package-ecosystem: "npm"
19-
directory: "/.github/actions/file"
20-
schedule:
21-
interval: "weekly"
22-
- package-ecosystem: "npm"
23-
directory: "/.github/actions/fix"
24-
schedule:
25-
interval: "weekly"
26-
- package-ecosystem: "github-actions"
27-
directory: "/"
28-
schedule:
29-
interval: "weekly"
30-
- package-ecosystem: "github-actions"
31-
directory: "/.github/actions/gh-cache/cache"
32-
schedule:
33-
interval: "weekly"
34-
- package-ecosystem: "github-actions"
35-
directory: "/.github/actions/gh-cache/delete"
36-
schedule:
37-
interval: "weekly"
38-
- package-ecosystem: "github-actions"
39-
directory: "/.github/actions/gh-cache/restore"
7+
directories:
8+
- "/"
9+
- "/.github/actions/auth"
10+
- "/.github/actions/find"
11+
- "/.github/actions/file"
12+
- "/.github/actions/fix"
13+
groups:
14+
# Open PRs for each major version and security update
15+
# Open an aggregate PR for all minor and patch version updates
16+
npm-minor-and-patch:
17+
applies-to: version-updates
18+
patterns:
19+
- "*"
20+
update-types:
21+
- "minor"
22+
- "patch"
4023
schedule:
4124
interval: "weekly"
4225
- package-ecosystem: "github-actions"
43-
directory: "/.github/actions/gh-cache/save"
26+
directories:
27+
- "/"
28+
- "/.github/actions/gh-cache/cache"
29+
- "/.github/actions/gh-cache/delete"
30+
- "/.github/actions/gh-cache/restore"
31+
- "/.github/actions/gh-cache/save"
32+
groups:
33+
# Open an aggregate PR for all GitHub Actions updates
34+
github-actions:
35+
patterns:
36+
- "*"
4437
schedule:
4538
interval: "weekly"
4639
- package-ecosystem: "bundler"
4740
directory: "/sites/site-with-errors"
41+
groups:
42+
# Open PRs for each major version and security update
43+
# Open an aggregate PR for all minor and patch version updates
44+
bundler-minor-and-patch:
45+
applies-to: version-updates
46+
patterns:
47+
- "*"
48+
update-types:
49+
- "minor"
50+
- "patch"
4851
schedule:
4952
interval: "weekly"

0 commit comments

Comments
 (0)