Skip to content

Commit 09f3260

Browse files
committed
Remove stray trailing spaces
1 parent afad33d commit 09f3260

11 files changed

+14
-14
lines changed

.github/workflows/__config-export.yml

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

.github/workflows/__diagnostics-export.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__multi-language-autodetect.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__packaging-codescanning-config-inputs-js.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__packaging-config-inputs-js.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__packaging-config-js.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__packaging-inputs-js.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__resolve-environment-action.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pr-checks/checks/config-export.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ steps:
3333
core.setFailed('`codeqlConfigSummary` property not found in the SARIF run property bag.');
3434
}
3535
if (configSummary.disableDefaultQueries !== false) {
36-
core.setFailed('`disableDefaultQueries` property incorrect: expected false, got ' +
36+
core.setFailed('`disableDefaultQueries` property incorrect: expected false, got ' +
3737
`${JSON.stringify(configSummary.disableDefaultQueries)}.`);
3838
}
3939
const expectedQueries = [{ type: 'builtinSuite', uses: 'security-extended' }];
4040
// Use JSON.stringify to deep-equal the arrays.
4141
if (JSON.stringify(configSummary.queries) !== JSON.stringify(expectedQueries)) {
42-
core.setFailed(`\`queries\` property incorrect: expected ${JSON.stringify(expectedQueries)}, got ` +
42+
core.setFailed(`\`queries\` property incorrect: expected ${JSON.stringify(expectedQueries)}, got ` +
4343
`${JSON.stringify(configSummary.queries)}.`);
4444
}
4545
core.info('Finished config export tests.');

pr-checks/checks/diagnostics-export.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ steps:
6666
core.setFailed(
6767
'Expected exactly one status page reporting descriptor for this diagnostic in the ' +
6868
`'runs[].invocations[].toolExecutionNotifications[]' SARIF property, but found ` +
69-
`${statusPageNotifications.length}. All notification reporting descriptors: ` +
69+
`${statusPageNotifications.length}. All notification reporting descriptors: ` +
7070
`${JSON.stringify(toolExecutionNotifications)}.`
7171
);
7272
}

0 commit comments

Comments
 (0)