Skip to content

Releases: actions/runner

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.

v2.168.0

24 Mar 21:38
Compare
Choose a tag to compare

Features

  • Update Runner Register GitHub API URL to Support Org-level Runner (#339 #345 #352)
  • Preserve workflow file/line/column for better error messages (#356)
  • Switch to use token service instead of SPS for exchanging oauth token. (#325)
  • Load and print machine setup info from .setup_info (#364)
  • Expose job name as $GITHUB_JOB (#366)
  • Add support for job outputs. (#365)
  • Set CI=true when launch process in actions runner. (#374)
  • Set steps..outcome and steps..conclusion. (#372)
  • Add support for workflow/job defaults. (#369)
  • Expose GITHUB_REPOSITORY_OWNER and ${{github.repository_owner}}. (#378)

Bugs

  • Use authenticate endpoint for testing runner connection. (#311)
  • Commands translate file path from container action (#331)
  • Change problem matchers output to debug (#363)
  • Switch hashFiles to extension function (#362)
  • Add expanded volumes strings to container mounts (#384)

Misc

  • Add runner auth documentation (#357)

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.168.0/actions-runner-win-x64-2.168.0.zip -OutFile actions-runner-win-x64-2.168.0.zip
// Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.168.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.168.0/actions-runner-osx-x64-2.168.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-osx-x64-2.168.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.168.0/actions-runner-linux-x64-2.168.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-x64-2.168.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.168.0/actions-runner-linux-arm64-2.168.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm64-2.168.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.168.0/actions-runner-linux-arm-2.168.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm-2.168.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.165.2

12 Feb 19:50
745b90a
Compare
Choose a tag to compare

Features

  • Expose whether debug is on/off via RUNNER_DEBUG. (#253)
  • Upload log on runner when worker get killed due to cancellation timeout. (#255)
  • Update config.sh/cmd --help documentation (#282)
  • Set http_proxy and related env vars for job/service containers (#304)
  • Set both http_proxy and HTTP_PROXY env for runner/worker processes. (#298)

Bugs

  • Verify runner Windows service hash started successfully after configuration (#236)
  • Detect source file path in L0 without using env. (#257)
  • Handle escaped '%' in commands data section (#200)
  • Allow container to be null/empty during matrix expansion (#266)
  • Translate problem matcher file to host path (#272)
  • Change hashFiles() expression function to use @actions/glob. (#268)
  • Default post-job action's condition to always(). (#293)
  • Support action.yaml file as action's entry file (#288)
  • Trace javascript action exit code to debug instead of user logs (#290)
  • Change prompt message when removing a runner to lines up with GitHub.com UI (#303)
  • Include step.env as part of env context. (#300)

Misc

  • Move .sln file under ./src (#238)
  • Treat warnings as errors during compile (#249)

Windows x64

We recommend configuring the runner under ":\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.165.2/actions-runner-win-x64-2.165.2.zip -OutFile actions-runner-win-x64-2.165.2.zip
// Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x64-2.165.2.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.165.2/actions-runner-osx-x64-2.165.2.tar.gz
// Extract the installer
tar xzf ./actions-runner-osx-x64-2.165.2.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.165.2/actions-runner-linux-x64-2.165.2.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-x64-2.165.2.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.165.2/actions-runner-linux-arm64-2.165.2.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm64-2.165.2.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.165.2/actions-runner-linux-arm-2.165.2.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm-2.165.2.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.165.1

31 Jan 03:27
a0a590f
Compare
Choose a tag to compare
v2.165.1 Pre-release
Pre-release

Features

  • Expose whether debug is on/off via RUNNER_DEBUG. (#253)
  • Upload log on runner when worker get killed due to cancellation timeout. (#255)
  • Update config.sh/cmd --help documentation (#282)
  • Set http_proxy and related env vars for job/service containers (#304)
  • Set both http_proxy and HTTP_PROXY env for runner/worker processes. (#298)

Bugs

  • Verify runner Windows service hash started successfully after configuration (#236)
  • Detect source file path in L0 without using env. (#257)
  • Handle escaped '%' in commands data section (#200)
  • Allow container to be null/empty during matrix expansion (#266)
  • Translate problem matcher file to host path (#272)
  • Change hashFiles() expression function to use @actions/glob. (#268)
  • Default post-job action's condition to always(). (#293)
  • Support action.yaml file as action's entry file (#288)
  • Trace javascript action exit code to debug instead of user logs (#290)
  • Change prompt message when removing a runner to lines up with GitHub.com UI (#303)
  • Include step.env as part of env context. (#300)
  • Update Base64 Encoders to deal with suffixes (#284)

Misc

  • Move .sln file under ./src (#238)
  • Treat warnings as errors during compile (#249)

Windows x64

We recommend configuring the runner under ":\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.165.1/actions-runner-win-x64-2.165.1.zip -OutFile actions-runner-win-x64-2.165.1.zip
// Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x64-2.165.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.165.1/actions-runner-osx-x64-2.165.1.tar.gz
// Extract the installer
tar xzf ./actions-runner-osx-x64-2.165.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.165.1/actions-runner-linux-x64-2.165.1.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-x64-2.165.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.165.1/actions-runner-linux-arm64-2.165.1.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm64-2.165.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.165.1/actions-runner-linux-arm-2.165.1.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm-2.165.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.165.0

28 Jan 03:44
Compare
Choose a tag to compare
v2.165.0 Pre-release
Pre-release

Features

  • Expose whether debug is on/off via RUNNER_DEBUG. (#253)
  • Upload log on runner when worker get killed due to cancellation timeout. (#255)
  • Update config.sh/cmd --help documentation (#282)
  • Set http_proxy and related env vars for job/service containers (#304)
  • Set both http_proxy and HTTP_PROXY env for runner/worker processes. (#298)

Bugs

  • Verify runner Windows service hash started successfully after configuration (#236)
  • Detect source file path in L0 without using env. (#257)
  • Handle escaped '%' in commands data section (#200)
  • Allow container to be null/empty during matrix expansion (#266)
  • Translate problem matcher file to host path (#272)
  • Change hashFiles() expression function to use @actions/glob. (#268)
  • Default post-job action's condition to always(). (#293)
  • Support action.yaml file as action's entry file (#288)
  • Trace javascript action exit code to debug instead of user logs (#290)
  • Change prompt message when removing a runner to lines up with GitHub.com UI (#303)
  • Include step.env as part of env context. (#300)
  • Update Base64 Encoders to deal with suffixes (#284)

Misc

  • Move .sln file under ./src (#238)
  • Treat warnings as errors during compile (#249)

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/v<RUNNER_VERSION>/actions-runner-win-x64-<RUNNER_VERSION>.zip -OutFile actions-runner-win-x64-<RUNNER_VERSION>.zip
// Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-<RUNNER_VERSION>.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.165.0/actions-runner-osx-x64-2.165.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-osx-x64-2.165.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.165.0/actions-runner-linux-x64-2.165.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-x64-2.165.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.165.0/actions-runner-linux-arm64-2.165.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm64-2.165.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.165.0/actions-runner-linux-arm-2.165.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm-2.165.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.164.0

18 Dec 20:44
4030237
Compare
Choose a tag to compare

Features

  • Remove runner flow: Change from PAT to "deletion token" in prompt (#225)
  • Expose github.run_id and github.run_number to action runtime env. (#224)

Bugs

  • Clean up error messages for container scenarios (#221)
  • Pick shell from prependpath (#231)

Misc

Windows x64

We recommend configuring the runner under ":\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.164.0/actions-runner-win-x64-2.164.0.zip -OutFile actions-runner-win-x64-2.164.0.zip
// Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x64-2.164.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.164.0/actions-runner-osx-x64-2.164.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-osx-x64-2.164.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.164.0/actions-runner-linux-x64-2.164.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-x64-2.164.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.164.0/actions-runner-linux-arm64-2.164.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm64-2.164.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.164.0/actions-runner-linux-arm-2.164.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm-2.164.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.163.1

18 Dec 00:56
b15230f
Compare
Choose a tag to compare

Features

  • N/A

Bugs

  • Fix scenario where Tool Cache folder in "Hosted macOS" environments was empty (#232)

Misc

  • N/A

Windows x64

We recommend configuring the runner under ":\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://githubassets.azureedge.net/runners/2.163.1/actions-runner-win-x64-2.163.1.zip -OutFile actions-runner-win-x64-2.163.1.zip
// Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x64-2.163.1.zip", "$PWD")

OSX

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O https://githubassets.azureedge.net/runners/2.163.1/actions-runner-osx-x64-2.163.1.tar.gz
// Extract the installer
tar xzf ./actions-runner-osx-x64-2.163.1.tar.gz

Linux x64

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O https://githubassets.azureedge.net/runners/2.163.1/actions-runner-linux-x64-2.163.1.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-x64-2.163.1.tar.gz

Linux arm64 (Pre-release)

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O https://githubassets.azureedge.net/runners/2.163.1/actions-runner-linux-arm64-2.163.1.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm64-2.163.1.tar.gz

Linux arm (Pre-release)

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O https://githubassets.azureedge.net/runners/2.163.1/actions-runner-linux-arm-2.163.1.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm-2.163.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.163.0

12 Dec 20:58
Compare
Choose a tag to compare
v2.163.0 Pre-release
Pre-release

Features

  • Added Proxy Support for self-hosted runner. (#206)
  • Introduce --name configure argument for runner name. (#217)
  • Better repo matching for issue file path (checkout v2 related) (#208)

Bugs

  • N/A

Misc

Windows x64

We recommend configuring the runner under ":\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://githubassets.azureedge.net/runners/2.163.0/actions-runner-win-x64-2.163.0.zip -OutFile actions-runner-win-x64-2.163.0.zip
// Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x64-2.163.0.zip", "$PWD")

OSX

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O https://githubassets.azureedge.net/runners/2.163.0/actions-runner-osx-x64-2.163.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-osx-x64-2.163.0.tar.gz

Linux x64

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O https://githubassets.azureedge.net/runners/2.163.0/actions-runner-linux-x64-2.163.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-x64-2.163.0.tar.gz

Linux arm64 (Pre-release)

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O https://githubassets.azureedge.net/runners/2.163.0/actions-runner-linux-arm64-2.163.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm64-2.163.0.tar.gz

Linux arm (Pre-release)

// Create a folder
mkdir actions-runner && cd actions-runner
// Download the latest runner package
curl -O https://githubassets.azureedge.net/runners/2.163.0/actions-runner-linux-arm-2.163.0.tar.gz
// Extract the installer
tar xzf ./actions-runner-linux-arm-2.163.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.