File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
lib/modules/datasource/docker Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { logger } from '../../../logger';
5
5
import { ExternalHostError } from '../../../types/errors/external-host-error' ;
6
6
import { cache } from '../../../util/cache/package/decorator' ;
7
7
import { HttpError } from '../../../util/http' ;
8
+ import { memCacheProvider } from '../../../util/http/cache/memory-http-cache-provider' ;
8
9
import type { HttpResponse } from '../../../util/http/types' ;
9
10
import { hasKey } from '../../../util/object' ;
10
11
import { regEx } from '../../../util/regex' ;
@@ -123,6 +124,7 @@ export class DockerDatasource extends Datasource {
123
124
const manifestResponse = await this . http [ mode ] ( url , {
124
125
headers,
125
126
noAuth : true ,
127
+ cacheProvider : memCacheProvider ,
126
128
} ) ;
127
129
return manifestResponse ;
128
130
} catch ( err ) /* istanbul ignore next */ {
You can’t perform that action at this time.
0 commit comments