diff --git a/lib/analyze-action.js b/lib/analyze-action.js index f542306c4..0e03bbf26 100644 --- a/lib/analyze-action.js +++ b/lib/analyze-action.js @@ -91549,7 +91549,7 @@ var GitHubFeatureFlags = class { remoteFlags = { ...remoteFlags, ...chunkFlags }; } this.logger.debug( - "Loaded the following default values for the feature flags from the Code Scanning API:" + "Loaded the following default values for the feature flags from the CodeQL Action API:" ); for (const [feature, value] of Object.entries(remoteFlags).sort( ([nameA], [nameB]) => nameA.localeCompare(nameB) diff --git a/lib/autobuild-action.js b/lib/autobuild-action.js index 55e45109f..d8d2101dd 100644 --- a/lib/autobuild-action.js +++ b/lib/autobuild-action.js @@ -80310,7 +80310,7 @@ var GitHubFeatureFlags = class { remoteFlags = { ...remoteFlags, ...chunkFlags }; } this.logger.debug( - "Loaded the following default values for the feature flags from the Code Scanning API:" + "Loaded the following default values for the feature flags from the CodeQL Action API:" ); for (const [feature, value] of Object.entries(remoteFlags).sort( ([nameA], [nameB]) => nameA.localeCompare(nameB) diff --git a/lib/init-action-post.js b/lib/init-action-post.js index 6e25d41c5..9af8999b3 100644 --- a/lib/init-action-post.js +++ b/lib/init-action-post.js @@ -129673,7 +129673,7 @@ var GitHubFeatureFlags = class { remoteFlags = { ...remoteFlags, ...chunkFlags }; } this.logger.debug( - "Loaded the following default values for the feature flags from the Code Scanning API:" + "Loaded the following default values for the feature flags from the CodeQL Action API:" ); for (const [feature, value] of Object.entries(remoteFlags).sort( ([nameA], [nameB]) => nameA.localeCompare(nameB) diff --git a/lib/init-action.js b/lib/init-action.js index 8bc286e9b..691e48b88 100644 --- a/lib/init-action.js +++ b/lib/init-action.js @@ -88975,7 +88975,7 @@ var GitHubFeatureFlags = class { remoteFlags = { ...remoteFlags, ...chunkFlags }; } this.logger.debug( - "Loaded the following default values for the feature flags from the Code Scanning API:" + "Loaded the following default values for the feature flags from the CodeQL Action API:" ); for (const [feature, value] of Object.entries(remoteFlags).sort( ([nameA], [nameB]) => nameA.localeCompare(nameB) diff --git a/lib/setup-codeql-action.js b/lib/setup-codeql-action.js index e67adb4ac..05021981c 100644 --- a/lib/setup-codeql-action.js +++ b/lib/setup-codeql-action.js @@ -86780,7 +86780,7 @@ var GitHubFeatureFlags = class { remoteFlags = { ...remoteFlags, ...chunkFlags }; } this.logger.debug( - "Loaded the following default values for the feature flags from the Code Scanning API:" + "Loaded the following default values for the feature flags from the CodeQL Action API:" ); for (const [feature, value] of Object.entries(remoteFlags).sort( ([nameA], [nameB]) => nameA.localeCompare(nameB) diff --git a/lib/upload-sarif-action.js b/lib/upload-sarif-action.js index 574440a74..636afe9d3 100644 --- a/lib/upload-sarif-action.js +++ b/lib/upload-sarif-action.js @@ -89723,7 +89723,7 @@ var GitHubFeatureFlags = class { remoteFlags = { ...remoteFlags, ...chunkFlags }; } this.logger.debug( - "Loaded the following default values for the feature flags from the Code Scanning API:" + "Loaded the following default values for the feature flags from the CodeQL Action API:" ); for (const [feature, value] of Object.entries(remoteFlags).sort( ([nameA], [nameB]) => nameA.localeCompare(nameB) diff --git a/src/feature-flags.ts b/src/feature-flags.ts index 21ba26857..068d84727 100644 --- a/src/feature-flags.ts +++ b/src/feature-flags.ts @@ -653,7 +653,7 @@ class GitHubFeatureFlags { } this.logger.debug( - "Loaded the following default values for the feature flags from the Code Scanning API:", + "Loaded the following default values for the feature flags from the CodeQL Action API:", ); for (const [feature, value] of Object.entries(remoteFlags).sort( ([nameA], [nameB]) => nameA.localeCompare(nameB),