Skip to content

Commit

Permalink
fix(conan): lower case accept header for github (#15644)
Browse files Browse the repository at this point in the history
Closes #15641
  • Loading branch information
rarkins committed May 19, 2022
1 parent 3b941ec commit da9b94d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules/datasource/conan/index.ts
Expand Up @@ -38,7 +38,7 @@ export class ConanDatasource extends Datasource {
}
const url = `https://api.github.com/repos/conan-io/conan-center-index/contents/recipes/${depName}/config.yml`;
const res = await this.githubHttp.get(url, {
headers: { Accept: 'application/vnd.github.v3.raw' },
headers: { accept: 'application/vnd.github.v3.raw' },
});
const doc = load(res.body, {
json: true,
Expand Down

0 comments on commit da9b94d

Please sign in to comment.