Skip to content
Snippets Groups Projects

feat: Update GH token format

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -154,7 +154,7 @@ public class DefaultCveService implements CveService {
.setYear(matcher.group(1))
.setThousands(matcher.group(2))
.setCveId(key)
.setPersonalToken(ghToken)
.setPersonalToken("Bearer " + ghToken)
.build();
return om.readerFor(CveProjectData.class).readValue(githubApi.getCveDetails(params));
Loading