I was looking for a way to establish a checksum check like WordPress is providing for Core and Plugins/Themes and found this:
https://github.blog/changelog/2025-06-03-releases-now-expose-digests-for-release-assets/
It is not perfect, because it does not generate the SHA for automatic releases, only for uploaded release assets, but there are GitHub Actions which can provide a workflow for this.
We could check the API and if there is no checksum (null returned) we skip the check, otherwise we compare the checksums.
What do you think? Is this idea worth exploring?
I was looking for a way to establish a checksum check like WordPress is providing for Core and Plugins/Themes and found this:
https://github.blog/changelog/2025-06-03-releases-now-expose-digests-for-release-assets/
It is not perfect, because it does not generate the SHA for automatic releases, only for uploaded release assets, but there are GitHub Actions which can provide a workflow for this.
We could check the API and if there is no checksum (null returned) we skip the check, otherwise we compare the checksums.
What do you think? Is this idea worth exploring?