| None of these are a big deal. > - Downloads binaries for use in build with no hash/signing verification. It downloads them using TLS. > - Doesn't pin shared actions. The shared actions are just @actions/checkout and @actions/setup-node. They're official. I wouldn't pin them - YAGNI. > - Uses Yarn to install dependencies (which can involve downloading/executing arbitrary code from anywhere) It downloads/executes code based on the carefully chosen dependencies > - Doesn't sign the final binary. That's platform dependent I think. For Mac OS X it does. Seems like FUD, which you might be able to recognize because you say "None of this is necessarily wrong". Especially the part about pinning first party GitHub Actions. There would be nothing wrong with that but it is much more useful to pin third party GitHub Actions, and IMHO suboptimal to pin first party actions. |
>> - Downloads binaries for use in build with no hash/signing verification.
> It downloads them using TLS.
If the binary is updated to a shady version, sure, no one will be able to tamper with the download, they're certain to have received the correct shady stuff.