The GitHub scrips aren’t recognizing values from secrets anymore (ex.:

Error: /home/runner/work/codebloom/codebloom/./.github/composite/validate-db/action.yml (Line: 26, Col: 25): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.GPG_PASSPHRASE

Potentially meaning they are doing a rolling upgrade of the nodes which breaks the scripts.

The issue is here

runs:
  using: "composite"
  steps:
    - name: Setup CI
      uses: ./.github/composite/setup-ci
      with:
        GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
        GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

Can no longer use secrets.* in composite workflows (likely patched now), must refer to inputs.* instead

AC: