mirror of
https://github.com/actions/toolkit.git
synced 2026-08-14 00:00:18 +02:00
10 lines
404 B
TypeScript
10 lines
404 B
TypeScript
// eslint-disable-next-line @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports
|
|||
|
|
const packageJson = require('../../../package.json')
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 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-${packageJson.version}`
|
||
|
|
}
|