Skip to content

Commit 932a7d5

Browse files
authored
Remove stray trailing spaces (#2122)
1 parent 9e39a05 commit 932a7d5

6 files changed

+9
-9
lines changed

.github/workflows/__config-export.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__diagnostics-export.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pr-checks/checks/config-export.yml

+2-2
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

+1-1
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
}

pr-checks/checks/multi-language-autodetect.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ steps:
6161
fi
6262
6363
- name: Check language autodetect for Swift
64-
if: >-
65-
env.CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT == 'true' ||
64+
if: >-
65+
env.CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT == 'true' ||
6666
(runner.os != 'Windows' && matrix.version == 'nightly-latest')
6767
shell: bash
6868
run: |

0 commit comments

Comments
 (0)