fix(bbg): harden install retry for raw.githubusercontent SSL flake
- retry/action.yml: set -uo pipefail (was set -u) so wget/curl|bash
pipeline failures propagate (rc from wget, not bash) and outer
5x retry actually triggers
- bbg/action.yml: switch wget github.com/raw redirect to direct
raw.githubusercontent curl -fsSL --retry 5 --retry-all-errors
--connect-timeout 30 + set -o pipefail; avoids 302 hop and gives
5 inner retries x 5 outer retries for raw SSL flake seen in
32777404961 (Unable to establish SSL connection -> exit 4)