We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0773bef commit a025ce0Copy full SHA for a025ce0
buildrunner/steprunner/tasks/push.py
@@ -254,7 +254,10 @@ def _security_scan_trivy(
254
with open(
255
os.path.join(local_run_dir, config_file_name), "w", encoding="utf8"
256
) as fobj:
257
- yaml.safe_dump(security_scan_config.config, fobj)
+ yaml.safe_dump(
258
+ {"cache-dir": container_cache_dir, **security_scan_config.config},
259
+ fobj,
260
+ )
261
262
image_scanner = None
263
try:
0 commit comments