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

10 lines
331 B
TypeScript
Raw Normal View History

2026-01-28 12:56:07 -05:00
// Version is hardcoded to avoid issues with import.meta.url in Jest
const VERSION = '6.0.0'
/**
* 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 {
2026-01-28 12:56:07 -05:00
return `@actions/artifact-${VERSION}`
}