From 7c90a29e9cb0b548c7cd52c2d11ecab21daf732f Mon Sep 17 00:00:00 2001 From: Mattias Karlsson Date: Fri, 4 Oct 2024 12:48:47 +0200 Subject: [PATCH] Address PR feedback --- .../Build/GitHubActions/Commands/GitHubActionsCommands.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Cake.Common/Build/GitHubActions/Commands/GitHubActionsCommands.cs b/src/Cake.Common/Build/GitHubActions/Commands/GitHubActionsCommands.cs index 8d4a141bb8..ac2c5700de 100644 --- a/src/Cake.Common/Build/GitHubActions/Commands/GitHubActionsCommands.cs +++ b/src/Cake.Common/Build/GitHubActions/Commands/GitHubActionsCommands.cs @@ -45,6 +45,8 @@ public GitHubActionsCommands( _fileSystem = fileSystem ?? throw new ArgumentNullException(nameof(fileSystem)); _writer = writer ?? throw new ArgumentNullException(nameof(writer)); _actionsEnvironment = actionsEnvironment ?? throw new ArgumentNullException(nameof(actionsEnvironment)); + // Internal service class, keeping public API unchanged, + // introduced in pr https://github.com/cake-build/cake/pull/4350 _artifactsService = new GitHubActionsArtifactService(environment, fileSystem, actionsEnvironment, createHttpClient ?? throw new ArgumentNullException(nameof(createHttpClient))); }