diff --git a/task/download-sbom-from-url-in-attestation/0.1/download-sbom-from-url-in-attestation.yaml b/task/download-sbom-from-url-in-attestation/0.1/download-sbom-from-url-in-attestation.yaml index 7dfc833133..ff87acd1fa 100644 --- a/task/download-sbom-from-url-in-attestation/0.1/download-sbom-from-url-in-attestation.yaml +++ b/task/download-sbom-from-url-in-attestation/0.1/download-sbom-from-url-in-attestation.yaml @@ -205,7 +205,8 @@ spec: # -> https://registry.com/v2/namespace/repo/blobs/sha256:digest blob_url=$(sed -E 's;([^/]*)/(.*)@(.*);https://\1/v2/\2/blobs/\3;' <<< "$blob_ref") - local tmp_dest=$(mktemp --tmpdir) + local tmp_dest + tmp_dest=$(mktemp --tmpdir download-sbom-task.out.XXXXXX) local headers_file headers_file=$(mktemp --tmpdir download-sbom-task.headers.XXXXXX)