Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/feature-flag-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const getHeaders = async (appConfigEndpoint: string) => {
}

const getToken = async (appConfigEndpoint: string) => {
const credential = new DefaultAzureCredential()
const credential = new DefaultAzureCredential() // CodeQL [SM05138] GitHub Actions will run in a clean environment each time, no one can inject malicious credentials.
const token = await credential.getToken(`${appConfigEndpoint}/.default`)
return token.token
}
Expand Down
Loading