Files
toolkit/packages/cache/src/internal/shared/user-agent.ts
T

9 lines
281 B
TypeScript
Raw Normal View History

import {version} from './package-version.cjs'
2024-10-24 05:19:48 -07:00
/**
* Ensure that this User Agent String is used in all HTTP calls so that we can monitor telemetry between different versions of this package
*/
export function getUserAgentString(): string {
return `@actions/cache-${version}`
2024-10-24 05:19:48 -07:00
}