Skip to content

Commit

Permalink
fix user agent (#1067)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgummerer committed Jan 11, 2024
1 parent 7be0c6a commit 3d7aca0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__tests__/config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ describe('config.ts', () => {
"replace": Array [],
"target": Array [],
"targetDependents": false,
"userAgent": "pulumi/actions@v3",
"userAgent": "pulumi/actions@v5",
},
"pulumiVersion": "^3",
"refresh": false,
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function makeConfig() {
policyPackConfigs: parseSemicolorToArray(
getMultilineInput('policyPackConfigs'),
),
userAgent: 'pulumi/actions@v3',
userAgent: 'pulumi/actions@v5',
color: getUnionInput('color', {
alternatives: ['always', 'never', 'raw', 'auto'] as const,
}),
Expand Down

0 comments on commit 3d7aca0

Please sign in to comment.