fun fact: all of the following are equivalent and valid in GitHub Actions:
secrets.github_token
secrets.GITHUB_TOKEN
secrets['github_token']
secrets['GITHUB_TOKEN']
secrets[format('{}', 'GITHUB_TOKEN')]
....and this is true for all contexts and all context identifiers, not just `secrets`. a lot of tools don't expect this, or handle it particularly well!