From f21754defa6c149196d043aa7f32c84e2ef296c8 Mon Sep 17 00:00:00 2001 From: Josh Cooper Date: Tue, 5 Aug 2025 09:52:51 -0700 Subject: [PATCH] Pass credentials to reusable workflow The workflow was failing during bundle install because the secret PUPPET_FORGE_TOKEN wasn't passed: /opt/hostedtoolcache/Ruby/3.1.7/x64/bin/bundle lock Fetching source index from https://rubygems-puppetcore.puppet.com/ Bad username or password for https://forge-key@rubygems-puppetcore.puppet.com/. --- .github/workflows/static_code_analysis.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/static_code_analysis.yaml b/.github/workflows/static_code_analysis.yaml index 62438dae..9ce89e1c 100644 --- a/.github/workflows/static_code_analysis.yaml +++ b/.github/workflows/static_code_analysis.yaml @@ -11,3 +11,4 @@ on: jobs: static_code_analysis: uses: "puppetlabs/phoenix-github-actions/.github/workflows/static_code_analysis.yaml@main" + secrets: inherit