bitcoindevkit / bdk

A modern, lightweight, descriptor-based wallet library written in Rust!
Other
860 stars 307 forks source link

Remove `ACTIONS_ALLOW_UNSECURE_COMMANDS` from the CI #168

Closed afilini closed 3 years ago

afilini commented 3 years ago

Apparently the actions from actions-rs that we use are trying to change the PATHenv variable, which is not allowed anymore and make the CI fail. See: https://github.com/bitcoindevkit/bdk/runs/1408731180

Adding ACTIONS_ALLOW_UNSECURE_COMMANDS make them work, but it's not recommended and should be removed if possible.

notmandatory commented 3 years ago

ugh.. I'll try replacing the actions-rs commands with multiple run: commands, it will be a little more verbose but should work.