Skip to content

Releases: actions/runner

v2.273.1

08 Sep 17:38
Compare
Choose a tag to compare

Features

  • Add in Log line numbers for streaming logs (#663)
  • Read env file (#683)
  • Add Runner File Commands (#684, #693)

Bugs

  • N/A

Misc

  • N/A

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.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.273.1/actions-runner-win-x64-2.273.1.zip -OutFile actions-runner-win-x64-2.273.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.273.1.zip", "$PWD")

OSX

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.273.1/actions-runner-osx-x64-2.273.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.273.1.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.273.1/actions-runner-linux-x64-2.273.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.273.1.tar.gz

Linux arm64 (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.273.1/actions-runner-linux-arm64-2.273.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.273.1.tar.gz

Linux arm (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.273.1/actions-runner-linux-arm-2.273.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.273.1.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.273.0

19 Aug 14:52
Compare
Choose a tag to compare

Features

Bugs

  • Fix feature flag check; omit context for generated context names (#638)
  • Fix endgroup maker (#640)

Misc

  • Adding help text for the new runnergroup feature (#626)
  • Updating virtual environment terminology in readme.md (#651)

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.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-win-x64-2.273.0.zip -OutFile actions-runner-win-x64-2.273.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.273.0.zip", "$PWD")

OSX

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-osx-x64-2.273.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.273.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-linux-x64-2.273.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.273.0.tar.gz

Linux arm64 (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-linux-arm64-2.273.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.273.0.tar.gz

Linux arm (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.273.0/actions-runner-linux-arm-2.273.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.273.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.272.0

29 Jul 19:37
ae543d5
Compare
Choose a tag to compare

Features

  • Composite Actions Support for Multiple Run Steps (#549, #557, #564, #568, #569, #578, #591, #599, #605, #609, #610, #615, #624)
  • Prepare to switch GITHUB_ACTION to use ContextName instead of refname (#593)
  • Fold logs for intermediate docker commands (#608)
  • Add ability to register a runner to the non-default self-hosted runner group (#613)

Bugs

  • Double quotes around variable so CD works if path contains spaces (#602)
  • Bump lodash in /src/Misc/expressionFunc/hashFiles (#603)
  • Fix poor performance of process spawned from svc daemon (#614)

Misc

  • Move shared ExecutionContext properties under .Global (#594)

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.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-win-x64-2.272.0.zip -OutFile actions-runner-win-x64-2.272.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.272.0.zip", "$PWD")

OSX

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-osx-x64-2.272.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.272.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-linux-x64-2.272.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.272.0.tar.gz

Linux arm64 (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-linux-arm64-2.272.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.272.0.tar.gz

Linux arm (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.272.0/actions-runner-linux-arm-2.272.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.272.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.267.1

01 Jul 02:24
Compare
Choose a tag to compare

Features

  • Resolve action download info from server (#508, #515, #550)
  • Print runner and machine name to log. (#539)

Bugs

  • Reduce input validation warnings (#506)
  • Fix null ref exception in SecretMasker caused by hashfiles timeout. (#516)
  • Add libicu66 to ./installDependencies.sh for Ubuntu 20.04 (#535)
  • Fix DataContract with Token service (#532)
  • Skip search $PATH on command with fully qualified path (#526)
  • Restore SELinux context on service file when SELinux is enabled (#525)
  • Fix trailing '.0' for Int64 values in ContextData (#572)

Misc

  • Remove SPS/Token migration code. Remove GHES url manipulate code. (#513)
  • Add sub-step for developer flow for clarity (#523)
  • Update Links and Language to Git + VSCode (#522)
  • Update runner configuration exception message (#540)

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.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.267.1/actions-runner-win-x64-2.267.1.zip -OutFile actions-runner-win-x64-2.267.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.267.1.zip", "$PWD")

OSX

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.267.1/actions-runner-osx-x64-2.267.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.267.1.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.267.1/actions-runner-linux-x64-2.267.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.267.1.tar.gz

Linux arm64 (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.267.1/actions-runner-linux-arm64-2.267.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.267.1.tar.gz

Linux arm (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.267.1/actions-runner-linux-arm-2.267.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.267.1.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.267.0

23 Jun 18:25
c776861
Compare
Choose a tag to compare
v2.267.0 Pre-release
Pre-release

Features

  • Resolve action download info from server (#508, #515, #550)
  • Print runner and machine name to log. (#539)

Bugs

  • Reduce input validation warnings (#506)
  • Fix null ref exception in SecretMasker caused by hashfiles timeout. (#516)
  • Add libicu66 to ./installDependencies.sh for Ubuntu 20.04 (#535)
  • Fix DataContract with Token service (#532)
  • Skip search $PATH on command with fully qualified path (#526)
  • Restore SELinux context on service file when SELinux is enabled (#525)

Misc

  • Remove SPS/Token migration code. Remove GHES url manipulate code. (#513)
  • Add sub-step for developer flow for clarity (#523)
  • Update Links and Language to Git + VSCode (#522)
  • Update runner configuration exception message (#540)

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.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.267.0/actions-runner-win-x64-2.267.0.zip -OutFile actions-runner-win-x64-2.267.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.267.0.zip", "$PWD")

OSX

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.267.0/actions-runner-osx-x64-2.267.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.267.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.267.0/actions-runner-linux-x64-2.267.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.267.0.tar.gz

Linux arm64 (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.267.0/actions-runner-linux-arm64-2.267.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.267.0.tar.gz

Linux arm (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.267.0/actions-runner-linux-arm-2.267.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.267.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.263.0

21 May 20:41
Compare
Choose a tag to compare

Features

  • N/A

Bugs

  • Handle jq returns "null" if the field does not exist in create-latest-svc.sh (#478)
  • Switch GITHUB_URL to GITHUB_SERVER_URL (#482)
  • Fix problem matcher for GHES (#488)
  • Fix container action inputs validation warning (#490)
  • Fix post step display name (#490)
  • Fix worker crash due to exception from evaluating step.env (#490)

Misc

  • N/A

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.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.263.0/actions-runner-win-x64-2.263.0.zip -OutFile actions-runner-win-x64-2.263.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.263.0.zip", "$PWD")

OSX

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.263.0/actions-runner-osx-x64-2.263.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.263.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.263.0/actions-runner-linux-x64-2.263.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.263.0.tar.gz

Linux arm64 (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.263.0/actions-runner-linux-arm64-2.263.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.263.0.tar.gz

Linux arm (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.263.0/actions-runner-linux-arm-2.263.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.263.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.262.1

12 May 20:30
cd8e4dd
Compare
Choose a tag to compare

Features

  • Sample scripts to automate scalable runners (#427)
  • Raise warning when action input does not match action.yml. (#429)
  • Add secret masker for trimming double quotes. (#440)
  • Use the API_URL and munge action URLs for GHES (#437 #469)
  • Help trace worker crash in Kusto. (#450)
  • update checkout@v1 for GHES (#470)

Bugs

  • Print node version in debug instead of output. (#433)
  • Better error when runner removed from service. (#441)
  • Add help info for '--labels' config option (#472)
  • Sps/token migration fix, job.status/steps.outcome/steps.conclusion case match with GitHub check suites conclusion. (#462)
  • Docker build using -f instead of implied default (#471)
  • Fix configure as service with runner name has space. (#474)

Misc

  • Make release notes code blocks copy-paste-able (#430)
  • Fix spelling of RHEL and CentOS. (#436)
  • Add CodeQL Analysis workflow (#459)
  • Use an env var to point to an Actions Service dev instance (#468)

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.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.262.1/actions-runner-win-x64-2.262.1.zip -OutFile actions-runner-win-x64-2.262.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.262.1.zip", "$PWD")

OSX

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.262.1/actions-runner-osx-x64-2.262.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.262.1.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.262.1/actions-runner-linux-x64-2.262.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.262.1.tar.gz

Linux arm64 (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.262.1/actions-runner-linux-arm64-2.262.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.262.1.tar.gz

Linux arm (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.262.1/actions-runner-linux-arm-2.262.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.262.1.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.262.0

11 May 19:28
Compare
Choose a tag to compare
v2.262.0 Pre-release
Pre-release

Features

  • Sample scripts to automate scalable runners (#427)
  • Raise warning when action input does not match action.yml. (#429)
  • Add secret masker for trimming double quotes. (#440)
  • Use the API_URL and munge action URLs for GHES (#437 #469)
  • Help trace worker crash in Kusto. (#450)
  • update checkout@v1 for GHES (#470)

Bugs

  • Print node version in debug instead of output. (#433)
  • Better error when runner removed from service. (#441)
  • Add help info for '--labels' config option (#472)
  • Sps/token migration fix, job.status/steps.outcome/steps.conclusion case match with GitHub check suites conclusion. (#462)
  • Docker build using -f instead of implied default (#471)

Misc

  • Make release notes code blocks copy-paste-able (#430)
  • Fix spelling of RHEL and CentOS. (#436)
  • Add CodeQL Analysis workflow (#459)

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.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.262.0/actions-runner-win-x64-2.262.0.zip -OutFile actions-runner-win-x64-2.262.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.262.0.zip", "$PWD")

OSX

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.262.0/actions-runner-osx-x64-2.262.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.262.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.262.0/actions-runner-linux-x64-2.262.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.262.0.tar.gz

Linux arm64 (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.262.0/actions-runner-linux-arm64-2.262.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.262.0.tar.gz

Linux arm (Pre-release)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.262.0/actions-runner-linux-arm-2.262.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.262.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.169.1

15 Apr 19:20
c126b52
Compare
Choose a tag to compare

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)

Bugs

  • ArgumentNullException: Value cannot be null, for anonymous volume mounts (#426)

Misc

  • N/A

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

// Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
// Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.169.1/actions-runner-win-x64-2.169.1.zip -OutFile actions-runner-win-x64-2.169.1.zip
// Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.169.1.zip", "$PWD")

OSX

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.169.1/actions-runner-osx-x64-2.169.1.tar.gz
// Extract the installer
tar xzf ./actions-runner-osx-x64-2.169.1.tar.gz

Linux x64

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.169.1/actions-runner-linux-x64-2.169.1.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-x64-2.169.1.tar.gz

Linux arm64 (Pre-release)

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.169.1/actions-runner-linux-arm64-2.169.1.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm64-2.169.1.tar.gz

Linux arm (Pre-release)

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.169.1/actions-runner-linux-arm-2.169.1.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm-2.169.1.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.169.0

08 Apr 17:05
Compare
Choose a tag to compare

Features

  • Runner support for GHES Alpha (#381 #386 #390 #393 $401)
  • Allow secrets context in Container.env (#388)

Bugs

  • Raise warning when volume mount root. (#413)
  • Fix typo (#394)

Misc

  • N/A

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

// Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
// Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.169.0/actions-runner-win-x64-2.169.0.zip -OutFile actions-runner-win-x64-2.169.0.zip
// Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.169.0.zip", "$PWD")

OSX

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.169.0/actions-runner-osx-x64-2.169.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-osx-x64-2.169.0.tar.gz

Linux x64

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.169.0/actions-runner-linux-x64-2.169.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-x64-2.169.0.tar.gz

Linux arm64 (Pre-release)

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.169.0/actions-runner-linux-arm64-2.169.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm64-2.169.0.tar.gz

Linux arm (Pre-release)

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.169.0/actions-runner-linux-arm-2.169.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm-2.169.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.