Skip to content

Commit 6bb4ad3

Browse files
mbgCopilot
andauthored
Update .github/actions/check-codescanning-config/index.ts
Co-authored-by: Copilot <[email protected]>
1 parent d46a178 commit 6bb4ad3

File tree

1 file changed

+1
-1
lines changed
  • .github/actions/check-codescanning-config

1 file changed

+1
-1
lines changed

.github/actions/check-codescanning-config/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import * as assert from 'assert'
77
const actualConfig = loadActualConfig()
88

99
function sortConfigArrays(config) {
10-
for (const key in Object.keys(config)) {
10+
for (const key of Object.keys(config)) {
1111
const value = config[key];
1212
if (key === 'queries' && Array.isArray(value)) {
1313
config[key] = value.sort();

0 commit comments

Comments
 (0)