mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
Compare commits
1 Commits
copilot/fi
...
v2.163.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b15230f7a1 |
@@ -1,14 +1,11 @@
|
||||
## Features
|
||||
- Added Proxy Support for self-hosted runner. (#206)
|
||||
- Introduce `--name` configure argument for runner name. (#217)
|
||||
- Better repo matching for issue file path (checkout v2 related) (#208)
|
||||
|
||||
## Bugs
|
||||
- N/A
|
||||
|
||||
## Bugs
|
||||
- Fix scenario where Tool Cache folder in "Hosted macOS" environments was empty (#232)
|
||||
|
||||
## Misc
|
||||
- Runner code cleanup (#197, #209, #214, #219)
|
||||
- Update node external to 12.13.1 (#215)
|
||||
- N/A
|
||||
|
||||
## Windows x64
|
||||
We recommend configuring the runner under "<DRIVE>:\actions-runner". This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows
|
||||
|
||||
@@ -208,6 +208,11 @@ namespace GitHub.Runner.Common
|
||||
public static readonly string StepDebug = "ACTIONS_STEP_DEBUG";
|
||||
}
|
||||
|
||||
public static class Agent
|
||||
{
|
||||
public static readonly string ToolsDirectory = "agent.ToolsDirectory";
|
||||
}
|
||||
|
||||
public static class System
|
||||
{
|
||||
//
|
||||
|
||||
@@ -246,8 +246,9 @@ namespace GitHub.Runner.Common
|
||||
break;
|
||||
|
||||
case WellKnownDirectory.Tools:
|
||||
path = Environment.GetEnvironmentVariable("RUNNER_TOOL_CACHE");
|
||||
|
||||
// TODO: Coallesce to just check RUNNER_TOOL_CACHE when images stabilize
|
||||
path = Environment.GetEnvironmentVariable("RUNNER_TOOL_CACHE") ?? Environment.GetEnvironmentVariable("RUNNER_TOOLSDIRECTORY") ?? Environment.GetEnvironmentVariable("AGENT_TOOLSDIRECTORY") ?? Environment.GetEnvironmentVariable(Constants.Variables.Agent.ToolsDirectory);
|
||||
|
||||
if (string.IsNullOrEmpty(path))
|
||||
{
|
||||
path = Path.Combine(
|
||||
|
||||
@@ -1 +1 @@
|
||||
2.163.0
|
||||
2.163.1
|
||||
|
||||
Reference in New Issue
Block a user