mirror of
https://github.com/actions/runner.git
synced 2025-12-11 12:57:05 +00:00
Compare commits
8 Commits
users/logo
...
releases/m
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4f840647b3 | ||
|
|
e2fbd1dc95 | ||
|
|
8d6acf2a7f | ||
|
|
6b3b42a840 | ||
|
|
826f58682e | ||
|
|
2eefff4b69 | ||
|
|
8456f7667d | ||
|
|
7f092c96db |
@@ -1,9 +1,10 @@
|
|||||||
## Features
|
## Features
|
||||||
- Runner support for GHES Alpha (#381 #386 #390 #393 $401)
|
- Better telemetry tracing for self-hosted runner. (#405)
|
||||||
- Allow secrets context in Container.env (#388)
|
- Launch middle man process on macOS to workaround SIP limit (#416)
|
||||||
|
- Added support for custom labels (#414, #425)
|
||||||
|
- support 'pre' execution for actions. (#389)
|
||||||
## Bugs
|
## Bugs
|
||||||
- Raise warning when volume mount root. (#413)
|
- ArgumentNullException: Value cannot be null, for anonymous volume mounts (#426)
|
||||||
- Fix typo (#394)
|
|
||||||
## Misc
|
## Misc
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
2.168.0
|
2.169.1
|
||||||
|
|||||||
@@ -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
|
// try to resolve path inside container if the request path is part of the mount volume
|
||||||
#if OS_WINDOWS
|
#if OS_WINDOWS
|
||||||
if (Container.MountVolumes.Exists(x => path.StartsWith(x.SourceVolumePath, StringComparison.OrdinalIgnoreCase)))
|
if (Container.MountVolumes.Exists(x => !string.IsNullOrEmpty(x.SourceVolumePath) && path.StartsWith(x.SourceVolumePath, StringComparison.OrdinalIgnoreCase)))
|
||||||
#else
|
#else
|
||||||
if (Container.MountVolumes.Exists(x => path.StartsWith(x.SourceVolumePath)))
|
if (Container.MountVolumes.Exists(x => !string.IsNullOrEmpty(x.SourceVolumePath) && path.StartsWith(x.SourceVolumePath)))
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
return Container.TranslateToContainerPath(path);
|
return Container.TranslateToContainerPath(path);
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
2.169.0
|
2.169.1
|
||||||
|
|||||||
Reference in New Issue
Block a user