From 27ed2fc631e860023bd9278aff3da6674ca08381 Mon Sep 17 00:00:00 2001 From: Pascal Mathis Date: Wed, 17 Jun 2020 20:48:53 +0200 Subject: [PATCH] fix: explicit caching of null for docker lookups --- lib/datasource/docker/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/datasource/docker/index.ts b/lib/datasource/docker/index.ts index 4af7d2f4c2a843..f90cb7bb662c95 100644 --- a/lib/datasource/docker/index.ts +++ b/lib/datasource/docker/index.ts @@ -368,7 +368,7 @@ export async function getDigest( ); } const cacheMinutes = 30; - await globalCache.set(cacheNamespace, cacheKey, null, cacheMinutes); + await globalCache.set(cacheNamespace, cacheKey, digest, cacheMinutes); return digest; }