mirror of
https://github.com/actions/runner.git
synced 2026-04-01 23:53:40 +08:00
Compare commits
6 Commits
releases/m
...
users/logo
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a80bdb570a | ||
|
|
d5c7097d2c | ||
|
|
f9baec4b32 | ||
|
|
a20ad4e121 | ||
|
|
2bd0b1af0e | ||
|
|
baa6ded3bc |
@@ -1,10 +1,9 @@
|
||||
## Features
|
||||
- Better telemetry tracing for self-hosted runner. (#405)
|
||||
- Launch middle man process on macOS to workaround SIP limit (#416)
|
||||
- Added support for custom labels (#414, #425)
|
||||
- support 'pre' execution for actions. (#389)
|
||||
- Runner support for GHES Alpha (#381 #386 #390 #393 $401)
|
||||
- Allow secrets context in Container.env (#388)
|
||||
## Bugs
|
||||
- ArgumentNullException: Value cannot be null, for anonymous volume mounts (#426)
|
||||
- Raise warning when volume mount root. (#413)
|
||||
- Fix typo (#394)
|
||||
## Misc
|
||||
- N/A
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
2.169.1
|
||||
2.168.0
|
||||
|
||||
@@ -110,9 +110,9 @@ namespace GitHub.Runner.Worker.Handlers
|
||||
|
||||
// try to resolve path inside container if the request path is part of the mount volume
|
||||
#if OS_WINDOWS
|
||||
if (Container.MountVolumes.Exists(x => !string.IsNullOrEmpty(x.SourceVolumePath) && path.StartsWith(x.SourceVolumePath, StringComparison.OrdinalIgnoreCase)))
|
||||
if (Container.MountVolumes.Exists(x => path.StartsWith(x.SourceVolumePath, StringComparison.OrdinalIgnoreCase)))
|
||||
#else
|
||||
if (Container.MountVolumes.Exists(x => !string.IsNullOrEmpty(x.SourceVolumePath) && path.StartsWith(x.SourceVolumePath)))
|
||||
if (Container.MountVolumes.Exists(x => path.StartsWith(x.SourceVolumePath)))
|
||||
#endif
|
||||
{
|
||||
return Container.TranslateToContainerPath(path);
|
||||
|
||||
@@ -1 +1 @@
|
||||
2.169.1
|
||||
2.169.0
|
||||
|
||||
Reference in New Issue
Block a user