From 5b76c59470b070ea1b9c8b6b4d9b2208812be632 Mon Sep 17 00:00:00 2001 From: Jamil Date: Wed, 27 Dec 2023 09:51:20 -0600 Subject: [PATCH] fix(ci): Inherit secrets from calling workflow to allow contributors' PRs to run (#3028) Attempting to fix the issue seen [here](https://github.com/firezone/firezone/actions/runs/7331666670). Unfortunately the docs aren't super clear on this so it may take some trial and error. https://docs.github.com/en/actions/using-workflows/reusing-workflows#using-inputs-and-secrets-in-a-reusable-workflow --- .github/actions/setup-rust/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup-rust/action.yml b/.github/actions/setup-rust/action.yml index 6af97b597..841921e03 100644 --- a/.github/actions/setup-rust/action.yml +++ b/.github/actions/setup-rust/action.yml @@ -1,5 +1,6 @@ name: "Setup Rust" description: "Sets up the correct Rust version and caching via sccache and a GCP backend" +secrets: inherit inputs: targets: description: "Additional targets to install"