-
Hello, I am using Cosign to verify Docker images. The command I run is the following:
This command returns this message:
I am sorry, that's the best I can do in terms of text formatting here. Please see attached an unfiltered, complete error message. I have had a similiar issue before, please see issue 1475. Back in March there were failed builds, but this is not the case today. If I understand it correctly, the build with Renovate in version 37.8.1 was successful. I am not 100% sure, if I understand the error message correctly. I think there went something wrong with some GitHub actions, but I can't tell what exactly and how to fix it. Did you experience a similar issue and might help me out? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I don't see any errors in that log, Soni don't understand the issue 🤷♂️ |
Beta Was this translation helpful? Give feedback.
-
You are right. There is no error. I did recon this message as an error message in the first place, because it was printed to my screen during an Ansible deploy. What I did not notice was, that this message was printed by an Ansible assertion and that this message only was stored as a variable. The origin of the text is the output from Everything works fine now. The issue can be closed. Hopefully, it's useful to some other newbie some day :D |
Beta Was this translation helpful? Give feedback.
You are right. There is no error.
I did recon this message as an error message in the first place, because it was printed to my screen during an Ansible deploy. What I did not notice was, that this message was printed by an Ansible assertion and that this message only was stored as a variable. The origin of the text is the output from
cosign verify
. So the assertion did not fail, because there was something wrong with Renovate, but because I did make some dependency updates and the way how assertions are handled was changed. To make a long story short: The issue here is my little experience with Cosign and Ansible.Everything works fine now. The issue can be closed. Hopefully, it's useful…