From 12129e92e686f96dc843dcdbc0329eb5b48853bb Mon Sep 17 00:00:00 2001 From: David Driscoll Date: Sun, 24 Dec 2023 22:02:19 -0500 Subject: [PATCH] Updated 1password integration to be the first step (before checkout) to allow handing secrets to the checkout operation (#1049) --- src/Nuke/GithubActions/GitHubActionsStepsAttribute.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Nuke/GithubActions/GitHubActionsStepsAttribute.cs b/src/Nuke/GithubActions/GitHubActionsStepsAttribute.cs index 1fa868e3..c9ca1708 100644 --- a/src/Nuke/GithubActions/GitHubActionsStepsAttribute.cs +++ b/src/Nuke/GithubActions/GitHubActionsStepsAttribute.cs @@ -80,11 +80,7 @@ public class GitHubActionsStepsAttribute : GithubActionsStepsAttributeBase /// public override ConfigurationEntity GetConfiguration(IReadOnlyCollection relevantTargets) { - var steps = new List - { - new CheckoutStep("Checkout"), - // new SetupDotNetStep("Install .NET Core Sdk"), - }; + var steps = new List(); var attributes = Build.GetType().GetCustomAttributes().OfType().ToArray(); @@ -243,6 +239,8 @@ public override ConfigurationEntity GetConfiguration(IReadOnlyCollection