mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
Release 2.277.1 runner (#977)
* Revert "Enable tty output from Docker Actions (#916)"
5972bd0060
* Release notes
* add pr
This commit is contained in:
@@ -1,16 +1,11 @@
|
|||||||
## Features
|
## Features
|
||||||
- Verify the Runner Hash during auto-upgrade before installing the new runner version (#967)
|
|
||||||
- Support download of runners from authenticated endpoints (#920)
|
|
||||||
- Enabled tty output in Docker Actions (#916)
|
|
||||||
- Added '--check' command to verify runner connectivity (#949)
|
|
||||||
|
|
||||||
## Bugs
|
## Bugs
|
||||||
- Fix usage of /dev/null and ping in run.sh (#968)
|
- Fixed an issue where docker containers failed to initialize (#977)
|
||||||
|
|
||||||
## Misc
|
## Misc
|
||||||
- Updated the copy for various runner messages (#972)
|
|
||||||
- Added the runner's OS to telemetry (#939)
|
|
||||||
- Various other telemetry improvements (#935)
|
|
||||||
|
|
||||||
## Windows x64
|
## Windows x64
|
||||||
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
|
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
|
||||||
|
|||||||
@@ -197,8 +197,7 @@ namespace GitHub.Runner.Worker.Container
|
|||||||
|
|
||||||
dockerOptions.Add($"--workdir {container.ContainerWorkDirectory}");
|
dockerOptions.Add($"--workdir {container.ContainerWorkDirectory}");
|
||||||
dockerOptions.Add($"--rm");
|
dockerOptions.Add($"--rm");
|
||||||
dockerOptions.Add($"-t");
|
|
||||||
|
|
||||||
foreach (var env in container.ContainerEnvironmentVariables)
|
foreach (var env in container.ContainerEnvironmentVariables)
|
||||||
{
|
{
|
||||||
// e.g. -e MY_SECRET maps the value into the exec'ed process without exposing
|
// e.g. -e MY_SECRET maps the value into the exec'ed process without exposing
|
||||||
|
|||||||
@@ -182,7 +182,7 @@ namespace GitHub.Runner.Worker.Handlers
|
|||||||
dockerCommandArgs.Add($"exec");
|
dockerCommandArgs.Add($"exec");
|
||||||
|
|
||||||
// [OPTIONS]
|
// [OPTIONS]
|
||||||
dockerCommandArgs.Add($"-it");
|
dockerCommandArgs.Add($"-i");
|
||||||
dockerCommandArgs.Add($"--workdir {workingDirectory}");
|
dockerCommandArgs.Add($"--workdir {workingDirectory}");
|
||||||
foreach (var env in environment)
|
foreach (var env in environment)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
2.277.0
|
2.277.1
|
||||||
|
|||||||
Reference in New Issue
Block a user