diff --git a/src/utils.ts b/src/utils.ts index 7d54916..383e103 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -128,10 +128,10 @@ const loadSecretsViaServiceAccount = async ( let client; try { client = await createClient({ - auth: token, - integrationName: "1Password GitHub Action", - integrationVersion: version, - }); + auth: token, + integrationName: "1Password GitHub Action", + integrationVersion: version, + }); } catch (err) { const message = err instanceof Error ? err.message : String(err); throw new Error(`Service account authentication failed: ${message}`);