Skip to content

Commit

Permalink
fix: validate GHA buildURL correctly (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 authored Aug 30, 2024
1 parent 238f2cc commit 3ab7799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/requesters/GitHubActionsRequester.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const validateMetadataObject = (object: any) => {
oidcToken: Joi.string().min(1).required(),
buildUrl: Joi.string()
.uri({
scheme: 'https:',
scheme: 'https',
})
.required(),
});
Expand Down

0 comments on commit 3ab7799

Please sign in to comment.