diff --git a/lib/workers/pr/changelog/source-github.js b/lib/workers/pr/changelog/source-github.js
index a4724cad7db35ab04be1e545d98af1e2a3bc9692..43b63e163836be985443def88d50740f6a7ebf5f 100644
--- a/lib/workers/pr/changelog/source-github.js
+++ b/lib/workers/pr/changelog/source-github.js
@@ -44,6 +44,7 @@ async function getChangeLogJSON({
   repositoryUrl,
   releases,
   depName,
+  manager,
 }) {
   if (repositoryUrl === 'https://github.com/DefinitelyTyped/DefinitelyTyped') {
     logger.debug('No release notes for @types');
@@ -101,7 +102,7 @@ async function getChangeLogJSON({
 
   const cacheNamespace = 'changelog-github-release';
   function getCacheKey(prev, next) {
-    return `${repository}:${prev}:${next}`;
+    return `${manager}:${depName}:${prev}:${next}`;
   }
 
   const changelogReleases = [];