Skip to content

Releases: actions/runner

v2.285.3

30 Jan 20:39
Compare
Choose a tag to compare

Features

  • n/a

Bugs

  • Fixed an issue where container environment variables names or values could escape the docker command (#2108)
  • Sanitize Windows ENVs (#2280)

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

Linux arm64

# 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.285.3/actions-runner-linux-arm64-2.285.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.285.3.tar.gz

Linux arm

# 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.285.3/actions-runner-linux-arm-2.285.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.285.3.tar.gz

Using your self hosted runner

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

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.285.3.zip 145e6fa6a65aefcb83a5467755744fe44ea247d9a4c43ec2750185e87039456a
  • actions-runner-osx-x64-2.285.3.tar.gz 919a595817a202175f686d34448510b0b9665d9a2ee481dc2269ebfc7b65d73e
  • actions-runner-linux-x64-2.285.3.tar.gz 60ed632a167d6b4ad9b36cb60aef8083610e4115ca97493ea86fe05383b18707
  • actions-runner-linux-arm64-2.285.3.tar.gz fbe586463549f61c9a84017eb6f2f0d4b747ab65f9843ca900249fb6b0a50049
  • actions-runner-linux-arm-2.285.3.tar.gz 7a454561fef1e2c02137898613d8b1c4ee866b96788eddd2a6e0e90806927795

v2.301.1

19 Jan 01:13
f764f5d
Compare
Choose a tag to compare

Features

  • Log GitHub RequestId for better traceability (#2332)
  • Dual upload summary to Actions and Result service (#2334)
  • Allow providing extra User-Agent for better correlation (#2370)
  • Show more information in the runner log (#2377)
  • New option to remove local config files (#2367)

Bugs

  • Treat jitconfig as secret (#2335)
  • Add Header/Footer to multi-line message in StdoutTraceListener (#2336)
  • Update Node dependencies (#2381)

Misc

  • Make runner image print diag log to STDOUT (#2331)
  • Update Node.js to 16.16.0 (#2371)
  • Add a disclaimer for which runner version is available to a given tenant (#2362)

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

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.301.1/actions-runner-win-x64-2.301.1.zip -OutFile actions-runner-win-x64-2.301.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.301.1.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.301.1/actions-runner-win-arm64-2.301.1.zip -OutFile actions-runner-win-arm64-2.301.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.301.1.zip", "$PWD")

OSX 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.301.1/actions-runner-osx-x64-2.301.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.301.1.tar.gz

OSX arm64 (Apple silicon)

# 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.301.1/actions-runner-osx-arm64-2.301.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.301.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.301.1/actions-runner-linux-x64-2.301.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.301.1.tar.gz

Linux arm64

# 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.301.1/actions-runner-linux-arm64-2.301.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.301.1.tar.gz

Linux arm

# 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.301.1/actions-runner-linux-arm-2.301.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.301.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.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.301.1.zip e83b27af969cb074ca53629b340f38d20e528071f4d6f9d4ba7819dace689ece

  • actions-runner-win-arm64-2.301.1.zip 117c4709fe8216c1fb470a364455165d9404de701193b5c7336292d89962c97f

  • actions-runner-osx-x64-2.301.1.tar.gz 3e0b037ea67e9626e99e6d3ff803ce0d8cc913938ddd1948b3a410ac6a75b878

  • actions-runner-osx-arm64-2.301.1.tar.gz 51dee92e4e2bb6737e080a670775986f547373c341e35335c9728eb8e097beaf

  • actions-runner-linux-x64-2.301.1.tar.gz 3ee9c3b83de642f919912e0594ee2601835518827da785d034c1163f8efdf907

  • actions-runner-linux-arm64-2.301.1.tar.gz 6b9ba0e7296b5d613dc5aaa0ca640c16b2122a7d42e4b5906c67d9b5c8847e10

  • actions-runner-linux-arm-2.301.1.tar.gz eb9ffe7cf3af213d30882b1420143550ce78a7987a39c4e1457ee8d5424544c3

  • actions-runner-win-x64-2.301.1-noexternals.zip df2971d2d0dd077329ab8ba0aa1b878912e0a79c4bb7fbffe8c5721bb92ece25

  • actions-runner-win-arm64-2.301.1-noexternals.zip b850cf3aa86aaa14b60147bc9bafafbcde89400df1bc100f8d8ef2e80b660208

  • actions-runner-osx-x64-2.301.1-noexternals.tar.gz db60b7e35656f518e8cc4cb18c8d1a0074e1f4592253fe1ba67daeb357ce2e96

  • actions-runner-osx-arm64-2.301.1-noexternals.tar.gz e60133c2f60b41b046a8f8b5b8ec10e407fc97d290ffecc15e8cdd7a8c3f8fde

  • actions-runner-linux-x64-2.301.1-noexternals.tar.gz 171dd6d0f5685fe1b81b0c6ea00bf8ff7164cbad23e70c036612fa801e6363b3

  • actions-runner-linux-arm64-2.301.1-noexternals.tar.gz 14c7136862b63e6907401b619c8d212b419d86900fc6809c2ba381e1dae73f89

  • actions-runner-linux-arm-2.301.1-noexternals.tar.gz d99d0c6c1dcaf0d1e2401bca3d25f765a0b4c80674b4be75d9ae46db1231e956

  • actions-runner-win-x64-2.301.1-noruntime.zip b5a724dce2252478ecd2991ef097c1f5247dad23b75fe99e7b658e927dcfe935

  • actions-runner-win-arm64-2.301.1-noruntime.zip a6e5b513ccbaa5b4a3007974461da0d131c720e180dd25736ea868ab4de2e172

  • actions-runner-osx-x64-2.301.1-noruntime.tar.gz f7182d993d041b266c0c011d67b3a8b5cb282a8bdd981f1599559e28d43fbb6b

  • actions-runner-osx-arm64-2.301.1-noruntime.tar.gz 46802bdaa625198048634b44c671f918180427efd7a7aed08ede8c30d3831725

  • actions-runner-linux-x64-2.301.1-noruntime.tar.gz 3d4ffd92b8d4f169c17fb8a6b7da3908c411d02a7c2da666b8ed8f711f6cd36f

  • actions-runner-linux-arm64-2.301.1-noruntime.tar.gz d87f27baa1038c2236d413ec8c06457770af29df87058b5d8e7b7005072b4e76

  • actions-runner-linux-arm-2.301.1-noruntime.tar.gz 48cf87064d52bcbc8a0a396d8ed3b14831d74ad56b6fa3372ae8a7113b2dd510

  • actions-runner-win-x64-2.301.1-noruntime-noexternals.zip 3aa1c4d93ce021617942b2d94487d7df7895cce8865a31880c4d9159c1e21b76

  • actions-runner-win-arm64-2.301.1-noruntime-noexternals.zip fbf6e180842dad63099f75e42760832567283a57d079d6ebc17d1b374cdbdf48

  • actions-runner-osx-x64-2.301.1-noruntime-noexternals.tar.gz 7af5be16b888bb281260bdf27c2d459f1cca76847ca937a38fbb2a8bdad44746

  • actions-runner-osx-arm64-2.301.1-noruntime-noexternals.tar.gz fa4a61621a6a2fd8fcf7842768adcd7380405b1688faa9332fd6f6e8ed4dc988

  • actions-runner-linux-x64-2.301.1-noruntime-noexternals.tar.gz a0d8bf875f23d6531546f5a5f443fa558b8c57eb912844374d2117fc77381fac

  • actions-runner-linux-arm64-2.301.1-noruntime-noexternals.tar.gz 5e5924bf26d36a920e7c024c048d5f8222e5ec35ecb6a30f933aa8ea9b8e389e

  • actions-runner-linux-arm-2.301.1-noruntime-noexternals.tar.gz <!-- BE...

Read more

v2.301.0

18 Jan 20:09
e471693
Compare
Choose a tag to compare
v2.301.0 Pre-release
Pre-release

Features

  • Log GitHub RequestId for better traceability (#2332)
  • Dual upload summary to Actions and Result service (#2334)
  • Allow providing extra User-Agent for better correlation (#2370)
  • Show more information in the runner log (#2377)
  • New option to remove local config files (#2367)

Bugs

  • Split by regex (#2333)
  • Treat jitconfig as secret (#2335)
  • Add Header/Footer to multi-line message in StdoutTraceListener (#2336)
  • Update Node dependencies (#2381)

Misc

  • Make runner image print diag log to STDOUT (#2331)
  • Update Node.js to 16.16.0 (#2371)
  • Add a disclaimer for which runner version is available to a given tenant (#2362)

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

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.301.0/actions-runner-win-x64-2.301.0.zip -OutFile actions-runner-win-x64-2.301.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.301.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.301.0/actions-runner-win-arm64-2.301.0.zip -OutFile actions-runner-win-arm64-2.301.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.301.0.zip", "$PWD")

OSX 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.301.0/actions-runner-osx-x64-2.301.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.301.0.tar.gz

OSX arm64 (Apple silicon)

# 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.301.0/actions-runner-osx-arm64-2.301.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.301.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.301.0/actions-runner-linux-x64-2.301.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.301.0.tar.gz

Linux arm64

# 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.301.0/actions-runner-linux-arm64-2.301.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.301.0.tar.gz

Linux arm

# 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.301.0/actions-runner-linux-arm-2.301.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.301.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.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.301.0.zip cebcdf027f4319eccbfe83270c66941f8c1eca0245da855ecddf5a4125d12483

  • actions-runner-win-arm64-2.301.0.zip 6d7e8c6f79ae58584f513ea100936cedfce6c5440e5a29b5818f75a394a4c036

  • actions-runner-osx-x64-2.301.0.tar.gz 8832fd14bc2f1a3d4ec201b481f3ad4766bed27e960f0d8dae7bfbe78d83f682

  • actions-runner-osx-arm64-2.301.0.tar.gz 657c6a2425c7448bdb374d32bbe13ed7de65a13177937cc4cca1c787b7379e2e

  • actions-runner-linux-x64-2.301.0.tar.gz 7b05952aba910db10e26658266733a77c90cc35320ce3fc5597df83bb4b2bb2c

  • actions-runner-linux-arm64-2.301.0.tar.gz 417f990ff45a1dc7efd94fdd6ced774278bb86d7f2733fb12f08fdd3c97a46ec

  • actions-runner-linux-arm-2.301.0.tar.gz abce9b5754afc5204f3dfc0556cadfed470f4ae7ab9e565482ed01be5ecfcab8

  • actions-runner-win-x64-2.301.0-noexternals.zip 3e42b12c97c9ac9b83e790d7c3366485d74d9264c50332854fd8ddb21d4a5efd

  • actions-runner-win-arm64-2.301.0-noexternals.zip 4ee92cff3e36c1ffa3f698e64e283ca01f0fc76cb291a7d19a2f7b591c0ffac4

  • actions-runner-osx-x64-2.301.0-noexternals.tar.gz 4f2941cb289ef4b835912689e1d7bea56feb01bdd0b82e64f6cd51047a5c099a

  • actions-runner-osx-arm64-2.301.0-noexternals.tar.gz c3666fe81d34eea46b1cd145f56e22c396c3c81eaefd108799467675b9d81512

  • actions-runner-linux-x64-2.301.0-noexternals.tar.gz 403fbfc0af1fc87de5f51a396d42a3dc21a35ce73b48e891922be0b28e3f9344

  • actions-runner-linux-arm64-2.301.0-noexternals.tar.gz a9375be02113f313436e2193bd920719f6a7a453b218b71f1673bb882acca70c

  • actions-runner-linux-arm-2.301.0-noexternals.tar.gz 49aead69b4503aa4ec12a4c33a346ad0bf3aab497c9539cb31fa207423a93a0e

  • actions-runner-win-x64-2.301.0-noruntime.zip 3a9f520f3757a2ce92d35d44ce0c92d71cfc55405938a871ecbc0d4f30ba5ebd

  • actions-runner-win-arm64-2.301.0-noruntime.zip c73a69e993e593967c8bb2eb59e331623d241889095d1c7b61f41a2311016eba

  • actions-runner-osx-x64-2.301.0-noruntime.tar.gz 166fb8ac577e3412755ce1b131bfc582d9539cf36473f6f817d687b3ed03ae68

  • actions-runner-osx-arm64-2.301.0-noruntime.tar.gz 2814c3de20f06ba648a3bb004a1c8e46ac593c5c4528cf719c9335988c47c48d

  • actions-runner-linux-x64-2.301.0-noruntime.tar.gz 592ba7de1d7ea414c8d307032d945ab948c13c238ae6fbe0237b5b3cfac32145

  • actions-runner-linux-arm64-2.301.0-noruntime.tar.gz 1ba6ee5f71940baf517ba48cd659df70b762c15a5a8b6cf1c9e9b14df0fe7cbc

  • actions-runner-linux-arm-2.301.0-noruntime.tar.gz 67c8372430ba3e73f9f8abb912b4785a766ba452d8d7f0862d4c8520c146aa9e

  • actions-runner-win-x64-2.301.0-noruntime-noexternals.zip 7575083661fcd99a5e3f73e87770b96cc98b837c1eb503b545bbbb0badd97951

  • actions-runner-win-arm64-2.301.0-noruntime-noexternals.zip 0d0eecc14c49335cd65f952ba180333abf9c2de91e8a6f9807e7d8063514a5ca

  • actions-runner-osx-x64-2.301.0-noruntime-noexternals.tar.gz fb08e5003c91f6b7269338b46225ecc9105a505e9f90636c5b9fa1306389cbbc

  • actions-runner-osx-arm64-2.301.0-noruntime-noexternals.tar.gz 880cb86fc4ebd569a149519458bcb5b45cda164e06babcfdf4ef0306c641c5ea

  • actions-runner-linux-x64-2.301.0-noruntime-noexternals.tar.gz 0c108bbfb358fa5857c71d3826677f7caf80c5660e726c3e198e8e5ccc22fcd0

  • actions-runner-linux-arm64-2.301.0-noruntime-noexternals.tar.gz 41734ef2f404d771c9...

Read more

v2.300.2

19 Dec 19:26
Compare
Choose a tag to compare

Features

  • Expose github.actor_id, github.workflow_ref & github.workflow_sha as environment variable (#2249)
  • Added worker and listener logs to stdout (#2291, #2307)

Bugs

  • Made github.action_status output lowercase to be consistent with job.status' output (#1944)

Misc

  • Added small size runner image for ARC (#2250)
  • Small change to Node.js 12 deprecation message (#2262)
  • Added the option to use the --replace argument to the create-latest-svc.sh (#2273)
  • Made runner_name optional defaulting to hostname in delete.sh script (#1871)
  • Return exit code when MANUALLY_TRAP_SIG is exported (#2285)
  • Use results for uploading step summaries (#2301, #2321, #2328, #2329)

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.300.2/actions-runner-win-x64-2.300.2.zip -OutFile actions-runner-win-x64-2.300.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.300.2.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.300.2/actions-runner-win-arm64-2.300.2.zip -OutFile actions-runner-win-arm64-2.300.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.300.2.zip", "$PWD")

OSX 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.300.2/actions-runner-osx-x64-2.300.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.300.2.tar.gz

OSX arm64 (Apple silicon)

# 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.300.2/actions-runner-osx-arm64-2.300.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.300.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.300.2/actions-runner-linux-x64-2.300.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.300.2.tar.gz

Linux arm64

# 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.300.2/actions-runner-linux-arm64-2.300.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.300.2.tar.gz

Linux arm

# 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.300.2/actions-runner-linux-arm-2.300.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.300.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.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.300.2.zip 54a37c9c78ca2dafe8912e633e8ff1740b9acf705169f240e3ee962b231a9f76

  • actions-runner-win-arm64-2.300.2.zip 9409e50d9ad33d8031355ed079b8f56cf3699f35cf5d0ca51e54deed432758ef

  • actions-runner-osx-x64-2.300.2.tar.gz 59814d103186d379123da8d2e7b002305a7b57f509fdd0cf34e4f86394dae9a4

  • actions-runner-osx-arm64-2.300.2.tar.gz c52f30610674acd0ea7c2d05e65c04c1dedf1606c2f00ce347640a001bafc568

  • actions-runner-linux-x64-2.300.2.tar.gz ed5bf2799c1ef7b2dd607df66e6b676dff8c44fb359c6fedc9ebf7db53339f0c

  • actions-runner-linux-arm64-2.300.2.tar.gz 804693a178db3265eb43e09c3b4e67ef28f6d64133778b38d66dcffd2f21057d

  • actions-runner-linux-arm-2.300.2.tar.gz e3b35299483009fedfa55e2b27c371e14a113f40da32df886d846591f14b7873

  • actions-runner-win-x64-2.300.2-noexternals.zip 1803e55853abb2ce0f02b7e1b7768f572e4e23450bf835b5ac5b20133a02244f

  • actions-runner-win-arm64-2.300.2-noexternals.zip 49f47692f6af702065acecd02df4964bb6f8a36f9446458e0e78d8c7acc2009b

  • actions-runner-osx-x64-2.300.2-noexternals.tar.gz a635775799dadc11d464dec92b9ae45e8c59701fcbe66fd13cb56c57aff76f98

  • actions-runner-osx-arm64-2.300.2-noexternals.tar.gz d4b49740a4f0fdfdb01bd7fccade5968472ae8870dfbd4cafc176f4fbfef5311

  • actions-runner-linux-x64-2.300.2-noexternals.tar.gz 1b3dd456f420d6c5fe7e5dd6e6aac09466a93ca1b359d6b28aa104c87016493d

  • actions-runner-linux-arm64-2.300.2-noexternals.tar.gz dc15f2a0a21df83019f206c1cadd36d7b88078f0db236b2fda05021c3e93496e

  • actions-runner-linux-arm-2.300.2-noexternals.tar.gz 8b2df64f97216e592cb6f43e83c81dba5696d1743da44766fae197e8ee4c7660

  • actions-runner-win-x64-2.300.2-noruntime.zip d6932e430bf98248d4f7115518c8f13e1a2976b843cd08590389887f64b86086

  • actions-runner-win-arm64-2.300.2-noruntime.zip d2305c76ca7a942d353aaa8f88c7c7e5cc74c1032984a37feb1c317766a5ddd3

  • actions-runner-osx-x64-2.300.2-noruntime.tar.gz 1ea54c2846566555aed64e19170842f23ae95b284ec2ebd48cdfc59ef1b7e451

  • actions-runner-osx-arm64-2.300.2-noruntime.tar.gz 78696a390acab87835bab692712a83c78e810edf1103707d86c376162e090b26

  • actions-runner-linux-x64-2.300.2-noruntime.tar.gz 2e610ff7362f864238d515a8914a415f9e96abc35b5c4d461d9f496ae44521ed

  • actions-runner-linux-arm64-2.300.2-noruntime.tar.gz 1ffb650fb36393b4ad28e370991f34ebcacc29406f589c1d2111a0582a7e44ab

  • actions-runner-linux-arm-2.300.2-noruntime.tar.gz 895af48e5d4a3f368d15c0f559ab1e2972090db0076cf9ebdebf77be42a75487

  • actions-runner-win-x64-2.300.2-noruntime-noexternals.zip 84677a8e8ca8f29bc8fa919a55e37a34555f54a7d28299ea0e4eb6536bf0ee3a

  • actions-runner-win-arm64-2.300.2-noruntime-noexternals.zip 028a70f960df20b29056800319303b14b40e094a88f82f153feefc73058bbce0

  • actions-runner-osx-x64-2.300.2-noruntime-noexternals.tar.gz 45169fa8a7218aa4012b8f62c16d0f1c2ee16f1e1650048b9d194fc692fbb34f

  • actions-runner-osx-arm64-2.300.2-noruntime-noexternals.tar.gz 67823841a162d33fbec96dac9ad9e4fcb5a3413e2c696333f4fbee2745e365b1

  • actions-runner-linux-x64-2.300.2-noruntime-noexternals.tar.gz 3769b093a9f3785f36d4b6901fd09642d7819a5e3d82975db719b7afa0aaaacd

  • actions-runner-linux-arm64-2.300.2-noruntime-noexternals.tar.gz e76104bf4ef02915e7cc10aa1f3592746d8cc392142a4dd263d7f5376795a8ad

  • actions-runner-linux-arm-2.300.2-noruntime-noexternals.tar.gz 188eaa7f186c567ddf6ce472a730ce2001ee56742f5da7cb708b591a0ef731d9

v2.300.1

19 Dec 16:35
edb3681
Compare
Choose a tag to compare

Features

  • Expose github.actor_id, github.workflow_ref & github.workflow_sha as environment variable (#2249)
  • Added worker and listener logs to stdout (#2291, #2307)

Bugs

  • Made github.action_status output lowercase to be consistent with job.status' output (#1944)

Misc

  • Added small size runner image for ARC (#2250)
  • Small change to Node.js 12 deprecation message (#2262)
  • Added the option to use the --replace argument to the create-latest-svc.sh (#2273)
  • Made runner_name optional defaulting to hostname in delete.sh script (#1871)
  • Return exit code when MANUALLY_TRAP_SIG is exported (#2285)
  • Use results for uploading step summaries (#2301) with limited size (#2321)

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.300.1/actions-runner-win-x64-2.300.1.zip -OutFile actions-runner-win-x64-2.300.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.300.1.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.300.1/actions-runner-win-arm64-2.300.1.zip -OutFile actions-runner-win-arm64-2.300.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.300.1.zip", "$PWD")

OSX 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.300.1/actions-runner-osx-x64-2.300.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.300.1.tar.gz

OSX arm64 (Apple silicon)

# 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.300.1/actions-runner-osx-arm64-2.300.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.300.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.300.1/actions-runner-linux-x64-2.300.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.300.1.tar.gz

Linux arm64

# 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.300.1/actions-runner-linux-arm64-2.300.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.300.1.tar.gz

Linux arm

# 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.300.1/actions-runner-linux-arm-2.300.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.300.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.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.300.1.zip 47be79feb835059139616040c41d2f54fcbbaca5c863ac2d4ff8d860f934e317

  • actions-runner-win-arm64-2.300.1.zip 2ff9c61c71acce3334596eb38890cd926c78431ab5e5bd972e3c334b58bdc8ec

  • actions-runner-osx-x64-2.300.1.tar.gz 6f4726c87ffa12aa427f0aebe5607ea0fa8ef4462decde3397c57dc9258f1d2c

  • actions-runner-osx-arm64-2.300.1.tar.gz 590cfff43a8e03c283e3dd45cae3e79997c8708bce70e542d41b3d0234ab921b

  • actions-runner-linux-x64-2.300.1.tar.gz 36cd6111ec30c6b8b6c164b5cff597a52eae1c4a0356549434181aa58bc181a2

  • actions-runner-linux-arm64-2.300.1.tar.gz 99f3c0b5c194fdc750683d98894d8fa18493d7371e4d40b9d9b62a5bb57a6606

  • actions-runner-linux-arm-2.300.1.tar.gz 7698f7b7b8ec1d4d598391c4142c84406c16f712f182ca12d6e92b02663a40b6

  • actions-runner-win-x64-2.300.1-noexternals.zip f643c45c2d92481844421f06690740afa452df08ebaf01874aa7b59a2681790f

  • actions-runner-win-arm64-2.300.1-noexternals.zip 80f462a5d509b398bc1bb466f0276f8638a4c6d1a274e418928459d498f1731c

  • actions-runner-osx-x64-2.300.1-noexternals.tar.gz bbddce2a19d709adf382745d2a84dbebb521466755f83bd93a07f912d170f2da

  • actions-runner-osx-arm64-2.300.1-noexternals.tar.gz 92b4452fe7c6626a9a135da80e46f4d3c018c11ec32717c2ed93b12844582951

  • actions-runner-linux-x64-2.300.1-noexternals.tar.gz 5eb7acdd4492e010000c17231d46de75a9a8044f67ffd629d742cd42935ee8c9

  • actions-runner-linux-arm64-2.300.1-noexternals.tar.gz 558a7e4775ff15301eaae42f6004de7094bfd73959c6c6f301bacd6b20e2d2ab

  • actions-runner-linux-arm-2.300.1-noexternals.tar.gz 3e231757025246d53e54a59333b8524fdd2f9248a729894f119c0bf0e4918006

  • actions-runner-win-x64-2.300.1-noruntime.zip 8ae9443bd34fe07e7f42ce27f4e9bad7f1475290db46c3d1b5cd76495d8d9900

  • actions-runner-win-arm64-2.300.1-noruntime.zip 6a53ac1d8826a51a1bce3eed01f84bb90587ae0f7c45ce0e93a9b1f52a7f2aa9

  • actions-runner-osx-x64-2.300.1-noruntime.tar.gz cdcc453d25c39e8d82e7b487907a56cf7026b59b3995b90089081db4fbe88811

  • actions-runner-osx-arm64-2.300.1-noruntime.tar.gz 6d3b91c5b548d4c2d7692835c814917668cc103f1c174397944fff2ff050770d

  • actions-runner-linux-x64-2.300.1-noruntime.tar.gz 1c6904962cb731781b505f64f461d3ed9ee4bddd0f24f257c2451c5fd3038996

  • actions-runner-linux-arm64-2.300.1-noruntime.tar.gz da818dd23669bc4ab1a42365fa1f8ef00ea72992808ed538d94dda4b3413a916

  • actions-runner-linux-arm-2.300.1-noruntime.tar.gz 80b1169333940c59e5efbd02136b9519e7e07f584646478462e330af6180c51b

  • actions-runner-win-x64-2.300.1-noruntime-noexternals.zip 3143fab236e50c9706dbd3e7da6e9a13706dae4297733d9dac16c1e4f1bbc8fe

  • actions-runner-win-arm64-2.300.1-noruntime-noexternals.zip c48fbada138f4f30fd2125534265b7bcbef1f61437b534ec2dacb05feb5cf61e

  • actions-runner-osx-x64-2.300.1-noruntime-noexternals.tar.gz 1652367e551d6dfa1bb8be7c7b4bc72cbc25ed0847336862a66c0a5e342e96fa

  • actions-runner-osx-arm64-2.300.1-noruntime-noexternals.tar.gz dfe0ca18eaca6337a3277d92f6dc7f0aff644777bca59a9c99ea8242305c45f0

  • actions-runner-linux-x64-2.300.1-noruntime-noexternals.tar.gz 56443e05306d8053d5aa3e3a1edc0d0b7464d1565f9cf702dbbf3b928a27e06f

  • actions-runner-linux-arm64-2.300.1-noruntime-noexternals.tar.gz a88498ca2331c0581d650579a46dd0b7bf58881aeb3e7cc08096eb4da09095e0

  • actions-runner-linux-arm-2.300.1-noruntime-noexternals.tar.gz be119f89fe386a7077dc355681ff9a1056d0be87c538ded551da0a8ef1972e0c

v2.300.0

14 Dec 08:50
b3e5620
Compare
Choose a tag to compare

Features

  • Expose github.actor_id, github.workflow_ref & github.workflow_sha as environment variable (#2249)
  • Added worker and listener logs to stdout (#2291, #2307)

Bugs

  • Made github.action_status output lowercase to be consistent with job.status' output (#1944)

Misc

  • Added small size runner image for ARC (#2250)
  • Small change to Node.js 12 deprecation message (#2262)
  • Added the option to use the --replace argument to the create-latest-svc.sh (#2273)
  • Made runner_name optional defaulting to hostname in delete.sh script (#1871)
  • Return exit code when MANUALLY_TRAP_SIG is exported (#2285)
  • Use results for uploading step summaries (#2301)

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.300.0/actions-runner-win-x64-2.300.0.zip -OutFile actions-runner-win-x64-2.300.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.300.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.300.0/actions-runner-win-arm64-2.300.0.zip -OutFile actions-runner-win-arm64-2.300.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.300.0.zip", "$PWD")

OSX 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.300.0/actions-runner-osx-x64-2.300.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.300.0.tar.gz

OSX arm64 (Apple silicon)

# 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.300.0/actions-runner-osx-arm64-2.300.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.300.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.300.0/actions-runner-linux-x64-2.300.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.300.0.tar.gz

Linux arm64

# 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.300.0/actions-runner-linux-arm64-2.300.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.300.0.tar.gz

Linux arm

# 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.300.0/actions-runner-linux-arm-2.300.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.300.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.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.300.0.zip 15119814c27bb0a5fc12138290fe9aa21f5df1910f2f10b06815df4f0e7f2bef

  • actions-runner-win-arm64-2.300.0.zip 4ffe7f00fd6ba1bcaee26cf784574fb37e8727e436fd1909f29a5de25c6176b3

  • actions-runner-osx-x64-2.300.0.tar.gz 623275e630bf936047bfab4e588f92213bd4481a8234f0a639bbeec01e678060

  • actions-runner-osx-arm64-2.300.0.tar.gz 39814d4e981183cc78294f06efa4b3d12b8cbb68bebc189bcd3bb8bdd77ba2e0

  • actions-runner-linux-x64-2.300.0.tar.gz fffee0d95033b141a14ce88debebb43b04f8d9e84d382cd6f22ed5ecdc2650d7

  • actions-runner-linux-arm64-2.300.0.tar.gz 55e7f1d5dd738916816dd975c326c32da8b88fb7c741f1613f24a862ef92a9fb

  • actions-runner-linux-arm-2.300.0.tar.gz da4ce929df71ab0cf117e4cb9b9f9a09d96d7935947ef0bccdcb4c078e5f4e10

  • actions-runner-win-x64-2.300.0-noexternals.zip 22e4cde605d588b19037b90db77d17ac15cf0a390ef7be10b2540246fd690072

  • actions-runner-win-arm64-2.300.0-noexternals.zip a0cf11a8281306bec4288f9121b66754d7aa32180d5ce99ce4a44dc17f05c5bb

  • actions-runner-osx-x64-2.300.0-noexternals.tar.gz 7c224567a35fbdd18418b9dd40073d27f4f6503cab253dce0ea8e912fef336fa

  • actions-runner-osx-arm64-2.300.0-noexternals.tar.gz d8a3ddd2ae46dd4179e5bd3a766e25cc17d6bb2c248ff893fcb5b7b9b554ef8d

  • actions-runner-linux-x64-2.300.0-noexternals.tar.gz f796f50578a3ebac274ba4fb8c17dde8f4975a3f44bde6453577aa7e52ca71a6

  • actions-runner-linux-arm64-2.300.0-noexternals.tar.gz b9a8d05e52b6010945e89d35c620a358e4c471f2a2113660c5add7e26fc3f07e

  • actions-runner-linux-arm-2.300.0-noexternals.tar.gz 801c84b4665e7f0a25bc99a3466011ebe66ef1754b918819ef9a8afcbee63ea2

  • actions-runner-win-x64-2.300.0-noruntime.zip 001f27eb932be623d1cea0298181209f53505453b1fd0ff619d90ff185f4a66d

  • actions-runner-win-arm64-2.300.0-noruntime.zip f3d78efb1cdfb4afade97309b3e6013c9877466642d6844678595b131c8538bb

  • actions-runner-osx-x64-2.300.0-noruntime.tar.gz 1a53ddd789dd35706ea515e8d72a1470530358c9428818d6511790ea7a9e1e14

  • actions-runner-osx-arm64-2.300.0-noruntime.tar.gz d9ecc75c73876d9c2174db3f4d00c4237f6ce0410f1bccc19257ece21e3b1990

  • actions-runner-linux-x64-2.300.0-noruntime.tar.gz 8fedabd03821f131969be4b8705767cb5cedb1103b7d06d7682ca84a5e295145

  • actions-runner-linux-arm64-2.300.0-noruntime.tar.gz 98555d9778201bbac1bedf64627a9947ac9fe1146f5e0182413372adeabf708a

  • actions-runner-linux-arm-2.300.0-noruntime.tar.gz 796f40d34cf39586dda548b69be0a52b5ee3b103b37e10994db14cf276def27c

  • actions-runner-win-x64-2.300.0-noruntime-noexternals.zip e14fdb34e5e57c148e8cf948fd190b868ea2c8db4d0639bc222d98024e89af86

  • actions-runner-win-arm64-2.300.0-noruntime-noexternals.zip 033d021b682319f71a07fdf5e63ef1ac2d18bcb106efca1b83de15d01c840437

  • actions-runner-osx-x64-2.300.0-noruntime-noexternals.tar.gz 390676d3571389c67d875fd3faa060c73f5a4da5b6d63869d16cb01e67327e13

  • actions-runner-osx-arm64-2.300.0-noruntime-noexternals.tar.gz 75998c73093f144b6ba6c3586cda1602b76fa0331500a56215584fcbd5a4a61d

  • actions-runner-linux-x64-2.300.0-noruntime-noexternals.tar.gz 0cdca5386ca07209e5dc4ea79c6e486c4acedfb688b48925ee741d0eb53eed43

  • actions-runner-linux-arm64-2.300.0-noruntime-noexternals.tar.gz ecafca8f419820fd7800f0b3e54d99757fc7657f9d7162cee93e8d6ecd954de0

  • actions-runner-linux-arm-2.300.0-noruntime-noexternals.tar.gz 531df34fc97984cdc87ca6177cd0c84fc57d89b9a9992cfc707f56fede1867c6

v2.299.1

03 Nov 00:04
Compare
Choose a tag to compare

Features

  • Displays the error logs in dedicated sub-sections of the Initialize containers section (#2182)
  • Add generateServiceConfig option for configure command (#2226)
  • Setting debug using GitHub Action variables (#2234)
  • run.sh installs SIGINT and SIGTERM traps to gracefully stop runner (#2233, 2240)

Bugs

  • Use Global.Variables instead of JobContext and include action path/ref in the message. (#2214)

Misc

  • Allow '--disableupdate' in create-latest-svc.sh (#2201)
  • Fix markup for support link (#2114)
  • Add runner devcontainer (#2187)
  • Setup linter for Runner (#2211, #2213, #2216)

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.299.1/actions-runner-win-x64-2.299.1.zip -OutFile actions-runner-win-x64-2.299.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.299.1.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.299.1/actions-runner-win-arm64-2.299.1.zip -OutFile actions-runner-win-arm64-2.299.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.299.1.zip", "$PWD")

OSX 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.299.1/actions-runner-osx-x64-2.299.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.299.1.tar.gz

OSX arm64 (Apple silicon)

# 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.299.1/actions-runner-osx-arm64-2.299.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.299.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.299.1/actions-runner-linux-x64-2.299.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.299.1.tar.gz

Linux arm64

# 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.299.1/actions-runner-linux-arm64-2.299.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.299.1.tar.gz

Linux arm

# 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.299.1/actions-runner-linux-arm-2.299.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.299.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.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.299.1.zip f7940b16451d6352c38066005f3ee6688b53971fcc20e4726c7907b32bfdf539

  • actions-runner-win-arm64-2.299.1.zip d1a9d8209f03589c8dc05ee17ae8d194756377773a4010683348cdd6eefa2da7

  • actions-runner-osx-x64-2.299.1.tar.gz b0128120f2bc48e5f24df513d77d1457ae845a692f60acf3feba63b8d01a8fdc

  • actions-runner-osx-arm64-2.299.1.tar.gz f73849b9a78459d2e08b9d3d2f60464a55920de120e228b0645b01abe68d9072

  • actions-runner-linux-x64-2.299.1.tar.gz 147c14700c6cb997421b9a239c012197f11ea9854cd901ee88ead6fe73a72c74

  • actions-runner-linux-arm64-2.299.1.tar.gz debe1cc9656963000a4fbdbb004f475ace5b84360ace2f7a191c1ccca6a16c00

  • actions-runner-linux-arm-2.299.1.tar.gz a4d66a766ff3b9e07e3e068a1d88b04e51c27c9b94ae961717e0a5f9ada998e6

  • actions-runner-win-x64-2.299.1-noexternals.zip 0d6d5cab162a793d6d0dc827bcc25589ef1b8911cbfe43cce4e394343e45dbb5

  • actions-runner-win-arm64-2.299.1-noexternals.zip 88f9fa8403633ac1a785f50aea7fa8289da9effb65190183d839db20df6bb148

  • actions-runner-osx-x64-2.299.1-noexternals.tar.gz 6d9ad11b5d7b49d2a0912c02c6f0f358195167cb87bb54121e4a5f0765231c07

  • actions-runner-osx-arm64-2.299.1-noexternals.tar.gz 35c79b475fe3554792d1362dc41b9964ce0c5e88dd7f20cf433d65d59a678437

  • actions-runner-linux-x64-2.299.1-noexternals.tar.gz c35428fe48d36542ccdaa2a02d2f481f4eb3eae9c13b9dad4d1fa30ae6bd8a98

  • actions-runner-linux-arm64-2.299.1-noexternals.tar.gz 0096a4695108eadb4dfc9a48330d9fb8c3ef9d3ee151da7612ad5051d66cda59

  • actions-runner-linux-arm-2.299.1-noexternals.tar.gz 03c8f756a52425911ddeaa3a98c95ec71d5984f1a7cc49ac52fc8126023c6029

  • actions-runner-win-x64-2.299.1-noruntime.zip fd8178a4458bf99cc500f02aa718513caee45ad2c3e6c7d1b156d5c559b23d32

  • actions-runner-win-arm64-2.299.1-noruntime.zip 2b10f01b663cababf24e8c5a272af6b2ec811fb4c69906970e65c4e0c6dbe1b7

  • actions-runner-osx-x64-2.299.1-noruntime.tar.gz 773b5860c04986758402986538d26950679d1919689bfcbc319802a2ef1ab10b

  • actions-runner-osx-arm64-2.299.1-noruntime.tar.gz 8e021d3e13073acb9501f8fb2fbf7132581ca42bf259691ab7662f39d028b232

  • actions-runner-linux-x64-2.299.1-noruntime.tar.gz 2bcd7b20182024034be1224d8f6236138afc34168176e46f5017333256a1bd19

  • actions-runner-linux-arm64-2.299.1-noruntime.tar.gz 7f02d79eaa92a047094c856483bee2ac7c9733b2d73530ebc2bdfba76c25878e

  • actions-runner-linux-arm-2.299.1-noruntime.tar.gz 30875a4c0b91ed15c7c101b7776e362bebca630a5ab2807603fd1fe92102a2b4

  • actions-runner-win-x64-2.299.1-noruntime-noexternals.zip e1daabd6544ae1daa0a38228a89da742991b28572c8717a7bf33ca7ae3c9371b

  • actions-runner-win-arm64-2.299.1-noruntime-noexternals.zip 8c94a991e832beedfaff3051784d394354a9a202789b0964de2d39792051fa45

  • actions-runner-osx-x64-2.299.1-noruntime-noexternals.tar.gz 8d2c0a60140b02d986a2a119b97514d07b655ecc04c6403b2737c7157e6a0979

  • actions-runner-osx-arm64-2.299.1-noruntime-noexternals.tar.gz b032c9ff4934762f602124f9b080aa20bb57474cd65bf22433f38c90d48c93d5

  • actions-runner-linux-x64-2.299.1-noruntime-noexternals.tar.gz d8076568a235aae95c7d6bc2a575bb722e1823f50cb17f364db631fad6200616

  • actions-runner-linux-arm64-2.299.1-noruntime-noexternals.tar.gz bcc4373e988b45a75e531050020bb8c87cd8ff873feecf5b67d3d171837dc55f

  • actions-runner-linux-arm-2.299.1-noruntime-noexternals.tar.gz 75a7706dc55fe0bc5fccfe1a15946a0d44b8486e0433fe162880020b157370b9

v2.299.0

02 Nov 19:10
c0d2110
Compare
Choose a tag to compare

Features

  • Displays the error logs in dedicated sub-sections of the Initialize containers section (#2182)
  • Add generateServiceConfig option for configure command (#2226)
  • Setting debug using GitHub Action variables (#2234)
  • run.sh installs SIGINT and SIGTERM traps to gracefully stop runner (#2233)

Bugs

  • Use Global.Variables instead of JobContext and include action path/ref in the message. (#2214)

Misc

  • Allow '--disableupdate' in create-latest-svc.sh (#2201)
  • Fix markup for support link (#2114)
  • Add runner devcontainer (#2187)
  • Setup linter for Runner (#2211, #2213, #2216)

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.299.0/actions-runner-win-x64-2.299.0.zip -OutFile actions-runner-win-x64-2.299.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.299.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.299.0/actions-runner-win-arm64-2.299.0.zip -OutFile actions-runner-win-arm64-2.299.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.299.0.zip", "$PWD")

OSX 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.299.0/actions-runner-osx-x64-2.299.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.299.0.tar.gz

OSX arm64 (Apple silicon)

# 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.299.0/actions-runner-osx-arm64-2.299.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.299.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.299.0/actions-runner-linux-x64-2.299.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.299.0.tar.gz

Linux arm64

# 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.299.0/actions-runner-linux-arm64-2.299.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.299.0.tar.gz

Linux arm

# 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.299.0/actions-runner-linux-arm-2.299.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.299.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.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.299.0.zip 4f43873b0bd50e651d3f1a8cff90f1d47e9fd3e469104cf7a7a0ffd67e9c4bbc

  • actions-runner-win-arm64-2.299.0.zip 0fb0156d3485ee55ec658e7c062964b7ec695d928fa090a14c09cba5fbb1dc8f

  • actions-runner-osx-x64-2.299.0.tar.gz 346fdf6221618de0834888e2549cbc51cf761cbb92244a18bdc6590b2b75f596

  • actions-runner-osx-arm64-2.299.0.tar.gz 35960097b07b7a7c1f608e8b8cd7207d4125f498c59c1e968905bc05b13072a1

  • actions-runner-linux-x64-2.299.0.tar.gz 3ff6a37a34824aeb068158dae436d3ad29e8ff6e2026c273baf092f7878c7d55

  • actions-runner-linux-arm64-2.299.0.tar.gz 6f40911e7d5f2dd32f70f60e049ac2a7358b8456dcd20ad345d57fa32f7c0f55

  • actions-runner-linux-arm-2.299.0.tar.gz 5bae63bb451157e2049538d7ae425ebb18debd09620116a0a8a1fea743090760

  • actions-runner-win-x64-2.299.0-noexternals.zip f3b8dcf5b76d343e8cabc0856ea950d9a1d1956285fb6da8120115cfc3229270

  • actions-runner-win-arm64-2.299.0-noexternals.zip d29dc232c28c85cbcfc3fb3bd0413ac10ef87619e9aa4835aaf27a7cc9ef5c64

  • actions-runner-osx-x64-2.299.0-noexternals.tar.gz 42feea86087212864b57584438b29efac290447d4fc0d402965e2fd97d0ca32e

  • actions-runner-osx-arm64-2.299.0-noexternals.tar.gz c3ae7f1a3fddcd0c4e65acffab0eb7de857abbed2a4b7d3d6b2363dd0bbf94b1

  • actions-runner-linux-x64-2.299.0-noexternals.tar.gz 41b9c834df66046d6e0c4619f1aa301a81e8ef36b092350712f9a64fa3caebbf

  • actions-runner-linux-arm64-2.299.0-noexternals.tar.gz e1ec43444a2864a85f76e3e670e066fd570f5995cc6a01193534e08a19266943

  • actions-runner-linux-arm-2.299.0-noexternals.tar.gz 676bece58dab610dc7d2fe00a95c3a412046a61e27eb0305836fca4c6b2fc4be

  • actions-runner-win-x64-2.299.0-noruntime.zip 45376a785a48731ea8a97bb3d82f13f77d4cd7346a57ba8a8f03b084d22f4614

  • actions-runner-win-arm64-2.299.0-noruntime.zip eea13e7f83128d4173d6e3ca86a832f50d8112ddd5af29d3b5007cf4af3ee7b1

  • actions-runner-osx-x64-2.299.0-noruntime.tar.gz c191a2f11eaa4809969ec0402838b8425e67f6dc55738d6b8ac16a924e7ff51d

  • actions-runner-osx-arm64-2.299.0-noruntime.tar.gz 5097d9d1cab8aef001e8ea6d116a55c3f77b985afab932d9cc2ab878261b2170

  • actions-runner-linux-x64-2.299.0-noruntime.tar.gz 8419656cd5b31d350f27d1139355d20a232c691f8790714f66a2f3914e34c0b3

  • actions-runner-linux-arm64-2.299.0-noruntime.tar.gz 93de3b188feb1f74a1a0a577949143255f125a288899fa503f9dbf507987da6b

  • actions-runner-linux-arm-2.299.0-noruntime.tar.gz 91c55b9164de6da67eb7a7ef74c30734e87661eee336fcf1566e3be3401f3d2b

  • actions-runner-win-x64-2.299.0-noruntime-noexternals.zip a205f48ab1574db8eb6e47cfcb58afa50c20864610aa120b5744c8dbce609ad9

  • actions-runner-win-arm64-2.299.0-noruntime-noexternals.zip e5c3255ebd955f4b1371eb10ecfa9aef787c886fd2c26764e160193191e4acd9

  • actions-runner-osx-x64-2.299.0-noruntime-noexternals.tar.gz 67f6a26a1deda2dd9176fd549130f9c3b0b3c6e856c3c4d76595b493b5ac3a2a

  • actions-runner-osx-arm64-2.299.0-noruntime-noexternals.tar.gz de78548a3e04c51914062f1d81d25cc4c55c9a60c3d93b9c6e29bdca83478d5e

  • actions-runner-linux-x64-2.299.0-noruntime-noexternals.tar.gz eb8a2985ad48b7dd975047ddf1011ab67b38f2c1b05e32dc60e8df7e9b36a2bc

  • actions-runner-linux-arm64-2.299.0-noruntime-noexternals.tar.gz d0e36f07c112eac8666741d3cf0dc8f293d3c7d585532ee31473c5ab65ad70dd

  • actions-runner-linux-arm-2.299.0-noruntime-noexternals.tar.gz c80fea2316ca56c437eb50d1459a240668383426584567c461cfadf5c3beaada

v2.298.2

04 Oct 16:50
f49f024
Compare
Choose a tag to compare

Features

  • [REVERTED] Service containers startup error logs are now included in workflow's logs (#2110)

Bugs

  • Fixed missing SHA for Windows arm64 release archive (#2171)

Misc

  • Added a feature flag to start warning on save-state and set-output deprecation (#2164)
  • Prepare supporting vars in workflow templates (#2096)

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.298.2/actions-runner-win-x64-2.298.2.zip -OutFile actions-runner-win-x64-2.298.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.298.2.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.298.2/actions-runner-win-arm64-2.298.2.zip -OutFile actions-runner-win-arm64-2.298.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.298.2.zip", "$PWD")

OSX 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.298.2/actions-runner-osx-x64-2.298.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.298.2.tar.gz

OSX arm64 (Apple silicon)

# 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.298.2/actions-runner-osx-arm64-2.298.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.298.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.298.2/actions-runner-linux-x64-2.298.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.298.2.tar.gz

Linux arm64

# 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.298.2/actions-runner-linux-arm64-2.298.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.298.2.tar.gz

Linux arm

# 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.298.2/actions-runner-linux-arm-2.298.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.298.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.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.298.2.zip 02c11d07fcc453f95fc5c15e11ea911cd0fd56f595bd70f2e8df87f46b2c796a

  • actions-runner-win-arm64-2.298.2.zip 8a312959e6e0f080baf78816ebe2ff725a655e5b5e2cc2e33fa15e7a4c5b32d7

  • actions-runner-osx-x64-2.298.2.tar.gz 0fb116f0d16ac75bcafa68c8db7c816f36688d3674266fe65139eefec3a9eb04

  • actions-runner-osx-arm64-2.298.2.tar.gz e124418a44139b4b80a7b732cfbaee7ef5d2f10eab6bcb3fd67d5541493aa971

  • actions-runner-linux-x64-2.298.2.tar.gz 0bfd792196ce0ec6f1c65d2a9ad00215b2926ef2c416b8d97615265194477117

  • actions-runner-linux-arm64-2.298.2.tar.gz 803e4aba36484ef4f126df184220946bc151ae1bbaf2b606b6e2f2280f5042e8

  • actions-runner-linux-arm-2.298.2.tar.gz 9ab9b967ab5b894bc0c89d92d852c161e120012bf7fb7e9153253c2cf9d2bf6c

  • actions-runner-win-x64-2.298.2-noexternals.zip fea6029dc8ba5af785e643630d177a376269156e9e8f2c3b3d57ff87d3635d79

  • actions-runner-win-arm64-2.298.2-noexternals.zip ae633d3fd80ce0cfe5ef29c15f67c37f7d734f94451e6dfd44a9c80429b886fd

  • actions-runner-osx-x64-2.298.2-noexternals.tar.gz cae930eba8402171d11530b75e678faa57db3a2683beb1814eaa49f187c90a70

  • actions-runner-osx-arm64-2.298.2-noexternals.tar.gz 668ccb54ac3073dcca26c8761c0080327777d6cad271f383391bf01803836ffc

  • actions-runner-linux-x64-2.298.2-noexternals.tar.gz 517fa704f04dba295fab6ffd1889dff9b4a3c5e547a70200c693cadd58f6f131

  • actions-runner-linux-arm64-2.298.2-noexternals.tar.gz b5276043e29dc13ff712692e3c432b12e87274b8a514a353eab18cf5e8462fa4

  • actions-runner-linux-arm-2.298.2-noexternals.tar.gz c7e6631d80fbe2c534711e5fb8d0178c3c4f43c44f6dbb1360797b9aca6d7c93

  • actions-runner-win-x64-2.298.2-noruntime.zip 4af855b03e563a648c0a88ee3f45e2a84f0faccf6f3c8043fec2074e6ddeaa1e

  • actions-runner-win-arm64-2.298.2-noruntime.zip 54bd2ab3e6801ce306a8e588e561ff922226dfe7d03d9bc2e3d257086ec9e790

  • actions-runner-osx-x64-2.298.2-noruntime.tar.gz de601153b028eb112c766e5bca6cd47614e05d8a2fe959d88ef5a22403755541

  • actions-runner-osx-arm64-2.298.2-noruntime.tar.gz a150ebe254d6145b41358c357812e3714280c7d40c93d14c14494bd898be3877

  • actions-runner-linux-x64-2.298.2-noruntime.tar.gz 85564dd990f7da868eced9e9ca6f66340236d88a76d8adf5b8b2f688dd680e76

  • actions-runner-linux-arm64-2.298.2-noruntime.tar.gz b035f53e1fe1bd087301dccd4e3b001b3d67483e37e2c731a5d1f536bfb9bddb

  • actions-runner-linux-arm-2.298.2-noruntime.tar.gz 851291bb6655d53b4ef9eadee312f9156437e57bcd083378751cb7e1454effe9

  • actions-runner-win-x64-2.298.2-noruntime-noexternals.zip 4e3a65eb25059573fd3fe95f1f19cff7c9beaab4d8a49598921f3a33c27be5f4

  • actions-runner-win-arm64-2.298.2-noruntime-noexternals.zip 0dbaf2a0c239c160fcaa0cddb7df73fae0a836891bc08acadaa9dde3bd9ad6f7

  • actions-runner-osx-x64-2.298.2-noruntime-noexternals.tar.gz d5e24f5d2e47781156cefa02b512fa5e3d9ada887b28b7f6b0b04f5030b9331e

  • actions-runner-osx-arm64-2.298.2-noruntime-noexternals.tar.gz 27fdd3117fe6d0520edd30a676eaf3230939124ea9f78cf6b6858d31071b2257

  • actions-runner-linux-x64-2.298.2-noruntime-noexternals.tar.gz 41219ffaeee2e202a1d0c87b0cb49f4e1f95ff3b501dd5c45827b13970395078

  • actions-runner-linux-arm64-2.298.2-noruntime-noexternals.tar.gz e234b6acad42d516fef0a7814f485f6b06b35608847a3879ab211d4a643c2d6a

  • actions-runner-linux-arm-2.298.2-noruntime-noexternals.tar.gz 120b3056fcf7d33e8ed4d1a379a91839816b2af05f6eaf77d9efd1e5aca9bf24

v2.298.1

04 Oct 15:35
c577be6
Compare
Choose a tag to compare

Features

  • Service containers startup error logs are now included in workflow's logs (#2110)

Bugs

  • Fixed missing SHA for Windows arm64 release archive (#2171)

Misc

  • Added a feature flag to start warning on save-state and set-output deprecation (#2164)
  • Prepare supporting vars in workflow templates (#2096)

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.298.1/actions-runner-win-x64-2.298.1.zip -OutFile actions-runner-win-x64-2.298.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.298.1.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.298.1/actions-runner-win-arm64-2.298.1.zip -OutFile actions-runner-win-arm64-2.298.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.298.1.zip", "$PWD")

OSX 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.298.1/actions-runner-osx-x64-2.298.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.298.1.tar.gz

OSX arm64 (Apple silicon)

# 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.298.1/actions-runner-osx-arm64-2.298.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.298.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.298.1/actions-runner-linux-x64-2.298.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.298.1.tar.gz

Linux arm64

# 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.298.1/actions-runner-linux-arm64-2.298.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.298.1.tar.gz

Linux arm

# 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.298.1/actions-runner-linux-arm-2.298.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.298.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.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.298.1.zip c22cea0ac69fde923ee21091ee2c2793222566424d19746ba250cef39ad15c96

  • actions-runner-win-arm64-2.298.1.zip c27c9e4a59ed7db69784ddfcde4a91a2de63ae8cf1a46fd9cde2db671a666658

  • actions-runner-osx-x64-2.298.1.tar.gz 7f2a7dc5275b0f9831ebff9132d6fdc5a767f7aef555cf4f1eb1a7f03c715695

  • actions-runner-osx-arm64-2.298.1.tar.gz 878994cc9e4f81280f8158cc52d983cdfa0413ee37fe484e9e5458ea808fbef8

  • actions-runner-linux-x64-2.298.1.tar.gz 0530380dda0afb5c1d63710391063c13c7c8137c25dbb56dacdde28fb4317940

  • actions-runner-linux-arm64-2.298.1.tar.gz 9198e04ca8b2d593cf83ebdd9c1b61f12a9640faee7412808a4aba428ec44e3c

  • actions-runner-linux-arm-2.298.1.tar.gz cd41c1e91beda1c11f8b0e8facf0ad5a4a4cfaf7868aa1b9a46aa7ab9dd91bb0

  • actions-runner-win-x64-2.298.1-noexternals.zip 8df0bd9e7003322af204433b74c95717d001db6998ee1170d31db09e0d42bc77

  • actions-runner-win-arm64-2.298.1-noexternals.zip e259aff3f7327d84343b481e0c7dbe722cebd70372559ec2fde37561c9cb519e

  • actions-runner-osx-x64-2.298.1-noexternals.tar.gz d40e156ddf5404b2e0f13912cdbffd73d1bc4b27935acdd85fcbc60abe84f5b2

  • actions-runner-osx-arm64-2.298.1-noexternals.tar.gz dac3ed385978308764f0b30d8ca82fb6b004be69f963fba7d9b822fb79dd73ac

  • actions-runner-linux-x64-2.298.1-noexternals.tar.gz 7acf14295856b199b0b39d6119031a2a661d427092966d083d3356ff12a92dfa

  • actions-runner-linux-arm64-2.298.1-noexternals.tar.gz ff9e8e25ae215dba751df3033cc7cfc65b920463886a1c4f3fcc7ad1db378b2a

  • actions-runner-linux-arm-2.298.1-noexternals.tar.gz 002aa284fafc37c8dd3eac6e1b52f65e5c323eb2eddf3afd7bb5e55fe74c87b4

  • actions-runner-win-x64-2.298.1-noruntime.zip 22fd5f6ee6f7ed2e2a69196b14d70a27db7460c950431cdad383a913c0dd50fe

  • actions-runner-win-arm64-2.298.1-noruntime.zip 39aa774f67cdee5ddcd1e252440c09f4455710e7cc2af5a1fb50943f130b0af6

  • actions-runner-osx-x64-2.298.1-noruntime.tar.gz d3c72fe18cd547c4284d59a9eef47669a811108a2a6434a0ebe2ab960877f053

  • actions-runner-osx-arm64-2.298.1-noruntime.tar.gz d337b6dcc329f458222531cc7eb3a17d2d79c066bd4c124ca403f6b36edf8f32

  • actions-runner-linux-x64-2.298.1-noruntime.tar.gz b53af9b37d455109e835d98b9cd3387264b4ffb417339f611619723bb61adf9e

  • actions-runner-linux-arm64-2.298.1-noruntime.tar.gz 1671852810c63e8286760a132422ad531334148e426a4a035792d16ce244e7e8

  • actions-runner-linux-arm-2.298.1-noruntime.tar.gz 02af3bf7b1e637cd8ebef53aa4ff48a5773dd8d64d4ed918982b74317a4af0d9

  • actions-runner-win-x64-2.298.1-noruntime-noexternals.zip 971fd8e303c54453f00009801bb430f99f94673a408eba47a0f0190b6fe7fe8f

  • actions-runner-win-arm64-2.298.1-noruntime-noexternals.zip 877bc07d0a3c82c1696b9abd905a1f2ba36c7cfdfc2bff2fa3bb40c0a35f8b68

  • actions-runner-osx-x64-2.298.1-noruntime-noexternals.tar.gz e1326bbbace742d0b056611db1f3927481cc2ef8093ea1a7657f113c8210339f

  • actions-runner-osx-arm64-2.298.1-noruntime-noexternals.tar.gz f59eabd7898237024f032753b5929467cf2760f8261708767c5bb9ceeaa29a18

  • actions-runner-linux-x64-2.298.1-noruntime-noexternals.tar.gz d1405dd4bac8904ed18136e04e294cbf0f69a51df3bd3833b990e2b35ab2516c

  • actions-runner-linux-arm64-2.298.1-noruntime-noexternals.tar.gz 83bc6fe52069329c5a826fe31c2564c7e2978ef79fdad34d011e56b0bf0d8cdb

  • actions-runner-linux-arm-2.298.1-noruntime-noexternals.tar.gz 2a1ca96fa581256e3835594f32fc2f978c3fce6bc5fded119167ad5232e170ca