mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +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
|
||||
- Runner support for GHES Alpha (#381 #386 #390 #393 $401)
|
||||
- Allow secrets context in Container.env (#388)
|
||||
- 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)
|
||||
## Bugs
|
||||
- Raise warning when volume mount root. (#413)
|
||||
- Fix typo (#394)
|
||||
- ArgumentNullException: Value cannot be null, for anonymous volume mounts (#426)
|
||||
## Misc
|
||||
- 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
|
||||
#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
|
||||
if (Container.MountVolumes.Exists(x => path.StartsWith(x.SourceVolumePath)))
|
||||
if (Container.MountVolumes.Exists(x => !string.IsNullOrEmpty(x.SourceVolumePath) && path.StartsWith(x.SourceVolumePath)))
|
||||
#endif
|
||||
{
|
||||
return Container.TranslateToContainerPath(path);
|
||||
|
||||
@@ -1 +1 @@
|
||||
2.169.0
|
||||
2.169.1
|
||||
|
||||
Reference in New Issue
Block a user