Skip to content

Releases: actions/runner

v2.289.2

30 Mar 14:38
529e404
Compare
Choose a tag to compare

Features

Bugs

  • Fixed an issue where websockets failed to successfully close when posting log lines (#1790)

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

  • actions-runner-osx-x64-2.289.2.tar.gz 291d0986c4f84172bfbaf3c75c861e427bfc48403c6a54b384e356f451af767b

  • actions-runner-linux-x64-2.289.2.tar.gz 7ba89bb75397896a76e98197633c087a9499d4c1db7603f21910e135b0d0a238

  • actions-runner-linux-arm64-2.289.2.tar.gz 22581dada58a3e7ec2fd8eec98096790df4269615540fae4df3bbb7080de7f62

  • actions-runner-linux-arm-2.289.2.tar.gz e0b64b342f0c2825c595559d63cb29dc473eed648d194f052ed85e5a2ee7af56

  • actions-runner-win-x64-2.289.2-noexternals.zip 8d53a73df6af3fe79c06df95a22bd27274c230810fa1a43ddf5763ffed0c439b

  • actions-runner-osx-x64-2.289.2-noexternals.tar.gz 82a3e96ae0f2aa4b1829fdd123301d9e8a7e3f4063c9296fafb14a6963ba5325

  • actions-runner-linux-x64-2.289.2-noexternals.tar.gz 87e74c5710308db25c8f5e1bf9e3867c6abfe3f93151b13bf23ea3065597b475

  • actions-runner-linux-arm64-2.289.2-noexternals.tar.gz 22cc226f367302ff12b82e47f3334e9416a40fea982ec0ea867b826ea6fcfe55

  • actions-runner-linux-arm-2.289.2-noexternals.tar.gz c272fbac2b45277a246e50c823b37bcc7c7bb0f6983cead15c2df2c9be3f00c0

  • actions-runner-win-x64-2.289.2-noruntime.zip 887992c9a8759ced5286bb6a91269bd8430dbb06ec1766ed3dd27ed871e302f3

  • actions-runner-osx-x64-2.289.2-noruntime.tar.gz 4f1f0d0390dd0251143151db22aa87fb1b6c04495be53014f5c88821c1ff126b

  • actions-runner-linux-x64-2.289.2-noruntime.tar.gz 8b2f4e1eda17868fc888e53d210257d8d50eca288afba6d1e55358aa95e4be8a

  • actions-runner-linux-arm64-2.289.2-noruntime.tar.gz 7559379d5f337b277049437efc9a4f8935a51e8c0156ca8eeb58e9cccb0b2ee0

  • actions-runner-linux-arm-2.289.2-noruntime.tar.gz d01bf9267f7df7c0495b2f5db9c1f8598e8bf44740a1417147282cb6c493e637

  • actions-runner-win-x64-2.289.2-noruntime-noexternals.zip 58addd85a4cf0190fb5b283f79f746611448e2b5369382615d8206e82e51a477

  • actions-runner-osx-x64-2.289.2-noruntime-noexternals.tar.gz a10d24361dd2649d600f2fdb95353497d4105dbf3276730e72edaf81bf056f7a

  • actions-runner-linux-x64-2.289.2-noruntime-noexternals.tar.gz 276ffee84e611b8eefed4aa51a872a871c9a7be438131e1c0f58f666d09a0350

  • actions-runner-linux-arm64-2.289.2-noruntime-noexternals.tar.gz 83fddb36caf05cbcf48c763c2950c7a9463ae980aba125ab4167b631b5dabc4e

  • actions-runner-linux-arm-2.289.2-noruntime-noexternals.tar.gz 169a1e7e4092a4d29d57d998244aeee589158bf1ad67b096d8931c5f92b2e275

v2.289.1

18 Mar 18:46
b3b97b7
Compare
Choose a tag to compare

Features

Bugs

  • Fixed a crash on runner startup (#1770)

Misc

  • Clarified the type of step running when running job started or completed hooks (#1769)

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

  • actions-runner-osx-x64-2.289.1.tar.gz 53e7457cc15e401c91ea685f8f0ea1eacc8efb2340633e27637603bb6a3d0ccd

  • actions-runner-linux-x64-2.289.1.tar.gz d75a2b35c47df410bba1ede6196fc62b6063164f5d109bda1693641bba87a65f

  • actions-runner-linux-arm64-2.289.1.tar.gz 28e09a31fe35863ef63507494642310eb7cbb9f2ae8c327cfce6962045a106f0

  • actions-runner-linux-arm-2.289.1.tar.gz 95d40261a858986459f7e45da361480ae1545b821162a46a0e4753a0deddf50d

  • actions-runner-win-x64-2.289.1-noexternals.zip b66e12b983e219b5e61e2aaf8ed3c898c333098dd7677a700f50e41a4c73c7f3

  • actions-runner-osx-x64-2.289.1-noexternals.tar.gz 632e5628dd55a9ebf5e62fcfb6aa02ca3250ad6d4e72b2d1727e94ed70826a9d

  • actions-runner-linux-x64-2.289.1-noexternals.tar.gz 8afdc8fea4b8cb72ffe3ccb8b245968f451f46757921b7cb1d2a7ba36d0f4c31

  • actions-runner-linux-arm64-2.289.1-noexternals.tar.gz b5d3b39bc1a1310d4e714b5d9c928ef26f1cf4e12d698d82b0e4b271a7f4d4eb

  • actions-runner-linux-arm-2.289.1-noexternals.tar.gz 13cde3c90b9cea170beb89976adac98585c8b7d97918b803098516e8961fdb48

  • actions-runner-win-x64-2.289.1-noruntime.zip 10c60c7325b1372a31d15a9511eae4acbc9134896ec763702972b4205e8b7646

  • actions-runner-osx-x64-2.289.1-noruntime.tar.gz 27cab9fe0c916edbd9e1f4178c66e42d9a9a0cacaae489f930860569c2df6e2f

  • actions-runner-linux-x64-2.289.1-noruntime.tar.gz fedba9e272a7a3cc1af03674cd85f8de92f23fa9a9859bd2a2a9dfef6c96a804

  • actions-runner-linux-arm64-2.289.1-noruntime.tar.gz 30d844173fb7fdbe359d482e27cd8cde2596399203a817db956d7501b42d68b0

  • actions-runner-linux-arm-2.289.1-noruntime.tar.gz 8ad71dc24bfe531365cfbdd2f4b9340236c1497f08c30348471f5dae0bcb3811

  • actions-runner-win-x64-2.289.1-noruntime-noexternals.zip 78b9f36252b7101360549d1c2bc2b19a617c2c7f25e0a7601519daf3e8e6c54b

  • actions-runner-osx-x64-2.289.1-noruntime-noexternals.tar.gz 7d21828ffcb0f2b179a9cebf84dfa1b818b5638a325d5448f9ccf209960b308a

  • actions-runner-linux-x64-2.289.1-noruntime-noexternals.tar.gz 794c72945fcd934b27f3653b0bcccead7a7c7bb0feeb30581127a4b209cdee7e

  • actions-runner-linux-arm64-2.289.1-noruntime-noexternals.tar.gz 292c9174991c4c30c037447f323383af5285ef34db6c55563310a3a44fc6dac4

  • actions-runner-linux-arm-2.289.1-noruntime-noexternals.tar.gz 87c396b7ce156d28850543cfa20bd1c6b1f8d294ad5c5ba675ee8c2f11920d9e

v2.289.0

18 Mar 15:42
bc0c126
Compare
Choose a tag to compare

Features

  • Added github.triggering_actor to the github context (#1726)
  • Save step information when creating annotations (#1744)
  • Improved performance of live log streaming (#1730, #1755)
  • Added Beta support for job started and completed hooks (#1737)

Bugs

Misc

  • Made some minor job telemetry improvements (#1747)
  • Added repository name and workflow file name to run.sh output (#1761)

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

  • actions-runner-osx-x64-2.289.0.tar.gz 8442dcad0e3b08235b6eb76395da4a97545ff47f76a0f06b6f8da0780c482d24

  • actions-runner-linux-x64-2.289.0.tar.gz d73e5d1d3d53be103970f2d775b5c355f0193f9989556dba27508cae2a7119c3

  • actions-runner-linux-arm64-2.289.0.tar.gz c4cb42877a86d344bb114a00fbb41f4e4ac1c7f7bd00150de0562c06689dbe30

  • actions-runner-linux-arm-2.289.0.tar.gz b4807c1330b620ea84e9316d5e03c8654340406e23e9da4aef615b0005ed421a

  • actions-runner-win-x64-2.289.0-noexternals.zip 987598e936af71185a7e48517211d77bed71c56d65d7e84c3a60cc2b8d8b1484

  • actions-runner-osx-x64-2.289.0-noexternals.tar.gz 2d1577f8a55e13b72ca0200f38cadfacf3804c0b678db3e2f46c6f9e145b6bba

  • actions-runner-linux-x64-2.289.0-noexternals.tar.gz 99b69ac438580309ae9e38820b3b29e0a42b490cbbb989b320b1a2cea28867be

  • actions-runner-linux-arm64-2.289.0-noexternals.tar.gz 136f247ac5a405a60743d67e6bd866267344bdc26e7120d6f65cf8a15b796c1a

  • actions-runner-linux-arm-2.289.0-noexternals.tar.gz 0aa8c5a1cac929fae7d9b73f2386a70cced3a1672dcec124d6a0be13c7fb3f9a

  • actions-runner-win-x64-2.289.0-noruntime.zip d0deb4a3f46b4da36d3e7294f26ff74fd04fa1ce961f82a4bc6fa3b5f5f5eb9f

  • actions-runner-osx-x64-2.289.0-noruntime.tar.gz c39f2b52c175f3c72046e05d0ca1acae0415b26daf2e41481379c96adedfa52e

  • actions-runner-linux-x64-2.289.0-noruntime.tar.gz 971f30db9ab88390050243689d0ae66e9acf1cc2844ad567432bc3b82d4e5012

  • actions-runner-linux-arm64-2.289.0-noruntime.tar.gz 644fecb832635eedeab001b830f11b719a4bb124cdc94114763ab22393f73521

  • actions-runner-linux-arm-2.289.0-noruntime.tar.gz 5e8687792b9c2ca33bd025656cfa484c9988e4736936db74dea8c0adce7ab2fc

  • actions-runner-win-x64-2.289.0-noruntime-noexternals.zip d2f4b9c73cb1e407d3223e35702d54390784a0fa2b44c750b8616eaac7a09b33

  • actions-runner-osx-x64-2.289.0-noruntime-noexternals.tar.gz 9cc3100b37c6d067637dfe8fc779a8296f277e2992122c5bde9b7d9876bc813b

  • actions-runner-linux-x64-2.289.0-noruntime-noexternals.tar.gz a422055bb4d0ff2806fe8886f0040ec64c837f0d07ff0b9a02a4e5d42944bff5

  • actions-runner-linux-arm64-2.289.0-noruntime-noexternals.tar.gz 02d040b685959827bc151bca897f6789e350d9b60be2f467b90460447073e108

  • actions-runner-linux-arm-2.289.0-noruntime-noexternals.tar.gz e8d34d2139ea8531da1ff97d642661f063eafcd9ec78ca58ad221bcfbe6c1c5f

v2.288.1

28 Feb 19:17
Compare
Choose a tag to compare

Features

  • Make run.sh|cmd handle update without quitting so containers using them as entrypoints don't exit on update (#1646, #1633, #1708)
  • Add support for Step Summary (#1642, #1667, #1712)
  • Pass jobId to the actionsDownloadInfo controller (#1639)
  • updated systemd svc.sh to accept custom service file (#1612)
  • Add ability to specify runner group when creating service (#1675)
  • Prefer node16 over node12 when running internal scripts (#1621)
  • Sending telemetry about actions usage. (#1688)
  • Bump node12 version to latest (#1651)
  • Add internal to node version function and use better env var name (#1715)
  • Force JS Actions Node version to 16 if FF is on unless user opted out (#1716)

Bugs

  • Fix windows console runner update crash (#1670)
  • Retry policy for methods GetTenantCredential and GetJITRunnerTokenAsync (#1691)
  • Skip DeleteAgentSession when the acess token has been revoked. (#1692)
  • Repaired hashFiles call so if error was thrown, it was returned to process invoker (#1678)
  • Runner throws null ref exception when new line after EOF is missing (#1687)
  • Lets allow up to 150 characters for services on linux/mac (#1710)

Misc

  • Added examples and aligned language within docs/checks/actions.md (#1664)
  • Problem with debugging on macOS M1 (#1625)
  • Fix typo in hashFiles.ts. (#1672)
  • Allow mocked updates for E2E testing (#1654)
  • Move JobTelemetry and StepsTelemetry into GlobalContext. (#1680)
  • Fix inconsistency of outputs (both canceled and cancelled are used (#1624)

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

  • actions-runner-osx-x64-2.288.1.tar.gz 08d6dd274a1a497d052f5dae740a058d28660cfdcd8864d53857bd31a8521cdf

  • actions-runner-linux-x64-2.288.1.tar.gz 325b89bdc1c67264ec6f4515afda4534f14a6477d9ba241da19c43f9bed2f5a6

  • actions-runner-linux-arm64-2.288.1.tar.gz 9fbb98fc64f57d48e86b641bd3dd54d870123afc32886b5ca1c33bdc10afb6ee

  • actions-runner-linux-arm-2.288.1.tar.gz 5c72a731fec847fd9ede62b7424fa0d59fcb7f6e8dea7d50259ac1c6e534a685

  • actions-runner-win-x64-2.288.1-noexternals.zip ab12bec0032611749194d93d8137d8aaee04ed159e22b5629d32c9addc0f1989

  • actions-runner-osx-x64-2.288.1-noexternals.tar.gz c1aec2bcbe0044ef796f103d10d461322c57398d9b7aeccccf14528536632cf1

  • actions-runner-linux-x64-2.288.1-noexternals.tar.gz e3049fcb6b712688b7e37390ab8e2d109bbeb6a98e4207057506af72d644826a

  • actions-runner-linux-arm64-2.288.1-noexternals.tar.gz b3f6e69093ff0154dffcaf836ec31d6d306d38404bc81a0da1ea25cae531ea24

  • actions-runner-linux-arm-2.288.1-noexternals.tar.gz 40289aa6c3e582b18d0fa73fd27bd45242843f8b8110562387c78043a96883bb

  • actions-runner-win-x64-2.288.1-noruntime.zip 2f01b918608defcf1a8db1747d8244bf31ea2b5fa979972d60a164ee9cf4d659

  • actions-runner-osx-x64-2.288.1-noruntime.tar.gz 2a0472fac88a70e309401b2b37f6f9c55215fbbe444e1bc34e2487d9b3887335

  • actions-runner-linux-x64-2.288.1-noruntime.tar.gz 41bc48cf9f63e6a3595c9c7d6d2ca575170c30304b521728a2ec8cd2baa8d5dd

  • actions-runner-linux-arm64-2.288.1-noruntime.tar.gz 7e320a7429f8a80bb4aa705011ffc875e89053ad1b3a7daeea0256801aac8bf3

  • actions-runner-linux-arm-2.288.1-noruntime.tar.gz 6874f0020732b34c6c9b1abfe4f99b47782145426e250e42869cb16052e28a5f

  • actions-runner-win-x64-2.288.1-noruntime-noexternals.zip f3f6fedd1d1ead91507fe4dbfc2a76ea10ddb952778266368a0e3b8fba1dba39

  • actions-runner-osx-x64-2.288.1-noruntime-noexternals.tar.gz b3a22685d508fcc6195be9a3fb2ae9bfc537806976f50e21594a8c296b56453b

  • actions-runner-linux-x64-2.288.1-noruntime-noexternals.tar.gz e286508e9aebea32fd1e201624af1e980e6fe27fc4ab62a940ed4f69903c7650

  • actions-runner-linux-arm64-2.288.1-noruntime-noexternals.tar.gz 9efd98423a77452bb6cb90fbc3075c0b225e6aa52fe6575a7b32ffe611d00bec

  • actions-runner-linux-arm-2.288.1-noruntime-noexternals.tar.gz 76957fbc640c56af542f695c8274b7427720146ef7511f30406eafc3d3f5d8d9

v2.288.0

28 Feb 18:42
d6af5b2
Compare
Choose a tag to compare

Features

  • Make run.sh|cmd handle update without quitting so containers using them as entrypoints don't exit on update (#1646, #1633, #1708)
  • Add support for Step Summary (#1642, #1667, #1712)
  • Pass jobId to the actionsDownloadInfo controller (#1639)
  • updated systemd svc.sh to accept custom service file (#1612)
  • Add ability to specify runner group when creating service (#1675)
  • Prefer node16 over node12 when running internal scripts (#1621)
  • Sending telemetry about actions usage. (#1688)
  • Bump node12 version to latest (#1651)
  • Add internal to node version function and use better env var name (#1715)
  • Force JS Actions Node version to 16 if FF is on unless user opted out (#1716)

Bugs

  • Fix windows console runner update crash (#1670)
  • Retry policy for methods GetTenantCredential and GetJITRunnerTokenAsync (#1691)
  • Skip DeleteAgentSession when the acess token has been revoked. (#1692)
  • Repaired hashFiles call so if error was thrown, it was returned to process invoker (#1678)
  • Runner throws null ref exception when new line after EOF is missing (#1687)
  • Lets allow up to 150 characters for services on linux/mac (#1710)

Misc

  • Added examples and aligned language within docs/checks/actions.md (#1664)
  • Problem with debugging on macOS M1 (#1625)
  • Fix typo in hashFiles.ts. (#1672)
  • Allow mocked updates for E2E testing (#1654)
  • Move JobTelemetry and StepsTelemetry into GlobalContext. (#1680)
  • Fix inconsistency of outputs (both canceled and cancelled are used (#1624)

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

  • actions-runner-osx-x64-2.288.0.tar.gz 60f91f26c65f69a7ceadb9ad4a87da2ddabee71bdf6a849e739b3ef892ccfe8c

  • actions-runner-linux-x64-2.288.0.tar.gz c32ad1e50ead23ea4689b9b0992bb406ab5518390e430f5ff8a906d8210b65e8

  • actions-runner-linux-arm64-2.288.0.tar.gz 7c6009a0716925ad2714efc2a738d1b1c5c871c5df883969a7e556a8df05609c

  • actions-runner-linux-arm-2.288.0.tar.gz f7c1adf50d542bab6360e15334c4177cdcdec6e1bb0f18a7e7b6984126329b86

  • actions-runner-win-x64-2.288.0-noexternals.zip f4a288dea471de9b8b28112680e19d36dc1d1c0537086f514e85086d05a08b06

  • actions-runner-osx-x64-2.288.0-noexternals.tar.gz 9a6134c0e0fb518e2ac185526b15d0be5d2538d1dc1b97fb6c2b64e96fc67710

  • actions-runner-linux-x64-2.288.0-noexternals.tar.gz 0e77868448ac56665316ba15a24342031f9c3a65f81de37404d02f0f9fa03685

  • actions-runner-linux-arm64-2.288.0-noexternals.tar.gz 0f2058632f9577c693b800cb5cd812fa852d0b91cf26ace65b4739c5d2c68072

  • actions-runner-linux-arm-2.288.0-noexternals.tar.gz d6f0651eaa3d467aa5c0b5465fdf73933d96ce6ee56a2e77170bd077df91b30a

  • actions-runner-win-x64-2.288.0-noruntime.zip 37e07570f4d66e110343839e35eb6f195bde6d3ba53020828b8387becc3d5365

  • actions-runner-osx-x64-2.288.0-noruntime.tar.gz f8b4560f77fe9bf51ff83eb237702747e6487e30e74d8c0badd8eed12d52cfa7

  • actions-runner-linux-x64-2.288.0-noruntime.tar.gz 1d81e3a4de1de480dca076261e93cc107b6b1c04edc42ddee2df024c5d17ff17

  • actions-runner-linux-arm64-2.288.0-noruntime.tar.gz 3c37e829e18282c373c467a94a663b84c2225a30a9170502cf1c5303658c212c

  • actions-runner-linux-arm-2.288.0-noruntime.tar.gz 95a65c124fd4d722053ab53c1a473d66c097d10d5fba6aa82b6ff5fdc007f77d

  • actions-runner-win-x64-2.288.0-noruntime-noexternals.zip d834246a34b68148c4a36866706e903024efea06cdbbe6fee05243213125c891

  • actions-runner-osx-x64-2.288.0-noruntime-noexternals.tar.gz 184882cfc214aae99f4ce9c4f95226c1b01e1a764b95611fd5c8350bceaff563

  • actions-runner-linux-x64-2.288.0-noruntime-noexternals.tar.gz d9c99f120b8a7d97b997a089425b83b7e1115bfbb15fa811cb33fce35d416168

  • actions-runner-linux-arm64-2.288.0-noruntime-noexternals.tar.gz 986f05626907f77c3bd43670fa5889794b76bdf58df54e190cf89d670a5f5bc5

  • actions-runner-linux-arm-2.288.0-noruntime-noexternals.tar.gz 44cb66fdad943c099552b28841e1801c116a37500ba559995f5118fb91bfe1cf

v2.287.1

27 Jan 21:27
b4e17c4
Compare
Choose a tag to compare

Features

Bugs

  • Fixes an issue where the run.sh and run.cmd scripts were not working as expected (#1634)

Misc

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

  • actions-runner-osx-x64-2.287.1.tar.gz e3c99df84f6e184e04c2dba60a8ad51a9d6115c29186d725a7d3d91561c3f839

  • actions-runner-linux-x64-2.287.1.tar.gz 8fa64384d6fdb764797503cf9885e01273179079cf837bfc2b298b1a8fd01d52

  • actions-runner-linux-arm64-2.287.1.tar.gz 9a59cb84458b27767e082080e7b575e42b36f0e32a493fc9627ca8e29f4b3346

  • actions-runner-linux-arm-2.287.1.tar.gz cd61ab3f9742a20d4fa69281153e8449ab5ad13ef7248ed2839bc232e15773fe

  • actions-runner-win-x64-2.287.1-noexternals.zip b1e35bb1c70eb89d978255cb3c47797fe404f104570f3b55d19db33fce0ad8b5

  • actions-runner-osx-x64-2.287.1-noexternals.tar.gz 15a653771bf351ba317eae21395b1129468c9ea24256dbcba7cdc761fe684f2e

  • actions-runner-linux-x64-2.287.1-noexternals.tar.gz 623213dcfa15cd81e4c7bcdd45a803e0af7aca410b36f3aa96e36080f9af4365

  • actions-runner-linux-arm64-2.287.1-noexternals.tar.gz c6f5f855cdff3e91bc8b3713dddbbfe9d5adedbe92305c82db9b14118ff8329b

  • actions-runner-linux-arm-2.287.1-noexternals.tar.gz c76ae025725bd8fa96ee30310bbb2f7a0a212d685e534ceb8fc1dd677efbae55

  • actions-runner-win-x64-2.287.1-noruntime.zip 02efd0599e4df86da820b447abc352eff18222fd68edea63991e0eea1c695b86

  • actions-runner-osx-x64-2.287.1-noruntime.tar.gz 633579fce1f44334e41ed60ae5f0f65bc76e28e7124981a6e506e18bd9bef48a

  • actions-runner-linux-x64-2.287.1-noruntime.tar.gz b2fef08214463600be37f95ef1ed50a0d345fe52cd8d843c458a7a18c347fbcd

  • actions-runner-linux-arm64-2.287.1-noruntime.tar.gz fdea344b5a6f4d067769472bd8459e8c145338d89dbb9f9a0460edeb39427108

  • actions-runner-linux-arm-2.287.1-noruntime.tar.gz 7b9e79c5f868a4f703bd5cfe84a896f64769e0c1de765ec4f4530a74661926cf

  • actions-runner-win-x64-2.287.1-noruntime-noexternals.zip 7a62a18ba15ad564cec960a3c9b38a65c5e9b3904a65d0ee6265485a34a3623a

  • actions-runner-osx-x64-2.287.1-noruntime-noexternals.tar.gz 5b2f8d1b45c17c8ba7ba49ab2edd94635018db1e43b7f1f6f5c474786f6e71ad

  • actions-runner-linux-x64-2.287.1-noruntime-noexternals.tar.gz 9c7c26ba109ca93779f27fef745c5e3671fdc10661ac782db9e1c70c57998bde

  • actions-runner-linux-arm64-2.287.1-noruntime-noexternals.tar.gz b4c44990323a2835e87614b003cb4457b2beb9d222f667cc70b87c6fcc7e2e4c

  • actions-runner-linux-arm-2.287.1-noruntime-noexternals.tar.gz b334ebf541142acb16348f3c46606deb101c08ababa89918ed68000cc38ef40c

v2.287.0

27 Jan 16:46
444f054
Compare
Choose a tag to compare

Features

  • Add Runner Configuration option to disable auto update --disableupdate (#1558)
  • Introduce GITHUB_ACTIONS_RUNNER_TLS_NO_VERIFY env variable to skip SSL Cert Verification on the Runner (#1616)
  • Adds support for downloading trimmed versions of the runner when the entire package does not need to be upgraded (#1568)

Bugs

  • Set Outcome/Conclusion for composite action steps (#1600)

Misc

  • Update run.sh to more gracefully handle updates (#1494)
  • Use 8Mb default chunking for File Container Uploads (#1626)
  • Performance improvements in handling large amounts of live logs (#1592)
  • Allow ./svc.sh stop to exit as soon as runner process exits (#1580)
  • Add additional tracing to help troubleshoot job message corruption (#1587)

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

  • actions-runner-osx-x64-2.287.0.tar.gz c6d05c16600511b70de71e505228cb634b7491a660c4c2984e243a32e1409a6e

  • actions-runner-linux-x64-2.287.0.tar.gz dd310ece5e54f4fc3a72d3bf5949362142f7d68744c59c13dbd901043fc20278

  • actions-runner-linux-arm64-2.287.0.tar.gz 70940998ab0458ec63c1c6fb405ebcaae85e624988145144ac72d49e3a9b63d1

  • actions-runner-linux-arm-2.287.0.tar.gz 44232a6c595a15be6d62c212a50042e4e340381db726ddffa3f8c1084bd4530d

  • actions-runner-win-x64-2.287.0-noexternals.zip 4bdbce951ed49019a28d8eec39ac0de96f9c69dec2a9ee7b3e4cb8af0900b99b

  • actions-runner-osx-x64-2.287.0-noexternals.tar.gz 064ed4327a1eba6baeec7007c05a3d74f3be271708f1124c28f664ccb0fa8b06

  • actions-runner-linux-x64-2.287.0-noexternals.tar.gz 046624b329b6cf24177e4b35f2b6948645a5f2f2b709350b634f7b0182bb5c79

  • actions-runner-linux-arm64-2.287.0-noexternals.tar.gz a1a130a75141be05bebfea4ed56db6d8cbcc4b4f258f466c1a6d7340ee019312

  • actions-runner-linux-arm-2.287.0-noexternals.tar.gz 5a70578a836b77877977c7cad884dc761318317e2262789c395cb8ef2097f2fe

  • actions-runner-win-x64-2.287.0-noruntime.zip 8bc686a09a75575f10a786107f16966176e56f76c6d16c48994b20497ee4c7df

  • actions-runner-osx-x64-2.287.0-noruntime.tar.gz ee9eee0864e36f1e993e0ec383e6fbad448f67dc15b4e547acdae4e716cb05ba

  • actions-runner-linux-x64-2.287.0-noruntime.tar.gz a2777c9bfdb93dea4e4aa784ef74353b1845ae506f33cb1dc9cc018935379871

  • actions-runner-linux-arm64-2.287.0-noruntime.tar.gz 8f6aaded5047168f54cf2d8bf0b806dea08b694cc2bec7008510bad2290aa27a

  • actions-runner-linux-arm-2.287.0-noruntime.tar.gz ed5ad9e77a39ed57cfdee6f1bceb0777202abfb041a0429d9bfe1883563eb12e

  • actions-runner-win-x64-2.287.0-noruntime-noexternals.zip 658c8b4f29884bab11af29b96e1d21ef2aa5751503d4c04c54a2ab6c9a811128

  • actions-runner-osx-x64-2.287.0-noruntime-noexternals.tar.gz 059ab3b06ac25177541a4c5a2c79b2092da0611acfff7fbf901071a0a42dab55

  • actions-runner-linux-x64-2.287.0-noruntime-noexternals.tar.gz fc6fbabf46a7b1e9d0cbfaabb03c0aa249b545c4d54c1ad47a86f703268498db

  • actions-runner-linux-arm64-2.287.0-noruntime-noexternals.tar.gz c5d89f7d6e5f4d5e97aabf3878e60d718d59649e49bc1ead8e1409da2751d045

  • actions-runner-linux-arm-2.287.0-noruntime-noexternals.tar.gz 145d9f91ba307a1a878403dbaa4cb85d93b5f5ab4ee0ba54eaf1c0eef3882dee

v2.286.1

14 Jan 17:10
Compare
Choose a tag to compare

Features

  • N/A

Bugs

  • Fix breaking change in dotnet 6 around globalization-invariant. (#1609)

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

  • actions-runner-osx-x64-2.286.1.tar.gz 46fe77f587d74b7c0f4f7c4efb917b568749d813ed3a4f826d875877de2e7d8d

  • actions-runner-linux-x64-2.286.1.tar.gz 7b1509c353ea4e6561b2ed2e916dcbf2a0d8ce21172edd9f8c846a20b6462cd6

  • actions-runner-linux-arm64-2.286.1.tar.gz 9a0519d1551d167bd51f7591b219bc789d4d9c03994bb6666f337723387fc806

  • actions-runner-linux-arm-2.286.1.tar.gz bc97072fd3380e6cb941185b946537f34d0b0dda8d11b1fa67d7411b3d354e08

  • actions-runner-win-x64-2.286.1-noexternals.zip 490a53fe6c0419f8c5c631095469258aca1a43a49d3682b0dde9d71a10a65ea0

  • actions-runner-osx-x64-2.286.1-noexternals.tar.gz 574da5791a63b719a4ff9bf82cf7a4573cf9c6bf9d0aad0ad7562bd736e3a575

  • actions-runner-linux-x64-2.286.1-noexternals.tar.gz 60df8aa2b9efb555fb72c86ddcbfefbe9db24890794f7ec8440d7ba717dd7da3

  • actions-runner-linux-arm64-2.286.1-noexternals.tar.gz dff9526802184e72097d96becbfd9b08b60fa5df6032d0262684eb17d777489c

  • actions-runner-linux-arm-2.286.1-noexternals.tar.gz c606734e5737421631c3b6927eabe063ce6d51e89de6326c20f6c772a9ebfe36

  • actions-runner-win-x64-2.286.1-noruntime.zip c9fc27fd241f94c07f745d4c505b42615c66312a891ab34cac1d58ae8d527ccb

  • actions-runner-osx-x64-2.286.1-noruntime.tar.gz 2a2dbb6e6124e22ba95a0ebebf0ce0690324a25bf84bf48348477b9fc14569fb

  • actions-runner-linux-x64-2.286.1-noruntime.tar.gz 1621856f6b278dd31822183d4e6bf8944aa8662b96c75590852a4ee57f8d8382

  • actions-runner-linux-arm64-2.286.1-noruntime.tar.gz 010674fa0c67d38b44192f39e4f14191f0ba7b82ddcb0c15aea8074cdb379ff1

  • actions-runner-linux-arm-2.286.1-noruntime.tar.gz 845b3a9f1ec3ee83c4adccc9ba4dc24387f1ca638385bcdd6323b772c02e6a43

  • actions-runner-win-x64-2.286.1-noruntime-noexternals.zip 8ef3e118478089f3267e7df8f0f103790ad0579c41986cc43ed46e495f8b79fc

  • actions-runner-osx-x64-2.286.1-noruntime-noexternals.tar.gz 4d402bbd98feb22924394cb5bdfb57af6f7e606e06b05e10f84dff7228b9bb6f

  • actions-runner-linux-x64-2.286.1-noruntime-noexternals.tar.gz 6a6e6c2100b96d898de409221c9f830bcdc2f606ba26e3033d6bc57d97d768a3

  • actions-runner-linux-arm64-2.286.1-noruntime-noexternals.tar.gz 6ecae60867010ff7e13f28ae8266cdde0412d1613acaf85b943e7e62c733282c

  • actions-runner-linux-arm-2.286.1-noruntime-noexternals.tar.gz b97387045edfd681e2ffe19a3e371da2b756e5dfeed11cad3e976012e9b6cb7f

v2.286.0

21 Dec 16:09
f1ddeb0
Compare
Choose a tag to compare

Features

  • Bump runtime to dotnet 6 (#1471)
  • Show service container logs on teardown (#1563)

Bugs

  • Add masks for multiline secrets from ::add-mask:: (#1521)
  • fix Log size and retention settings not work (#1507)
  • Refactor SelfUpdater adding L0 tests. (#1564)
  • Fix test failure: /bin/sleep on Macos 11 (Monterey) does not accept the suffix s. (#1472)

Misc

  • Update dependency check for dotnet 6. (#1551)
  • Produce trimmed down runner packages. (#1556)
  • Deleted extra background in github-praph.png, which is displayed in README.md (#1432)

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

  • actions-runner-osx-x64-2.286.0.tar.gz c780598891a964e44a4fc43e75cff122e1ab49929677d4adbce5c814b4d9fb60

  • actions-runner-linux-x64-2.286.0.tar.gz 855b84fe96fda84b22bb9efa2088652d785ed856a7af484b5f4c44f650d7eecf

  • actions-runner-linux-arm64-2.286.0.tar.gz 66082dd016da94b1935fedd038c3c8f0c8d7cb531bc57e8a549a373b9ecd1dd6

  • actions-runner-linux-arm-2.286.0.tar.gz 9cbbe8b09cee054cc6ce05c22fbb2513c01f3533d8cbe6c6cee92e71bb5d9f53

  • actions-runner-win-x64-2.286.0-noexternals.zip f82c2927e5524e58a1c28f53482f749ca0af4ec8502d3870b75ebce0fabd6955

  • actions-runner-osx-x64-2.286.0-noexternals.tar.gz 54b56bed8a4cfef32d75a29509f557ffe27f7198a921a52afcf48760227ab07d

  • actions-runner-linux-x64-2.286.0-noexternals.tar.gz e9aedd60efc847bcef323d2298709ddb1ea087e4490199321353ed63945b1ffe

  • actions-runner-linux-arm64-2.286.0-noexternals.tar.gz 47fff48b1fcd835de62a8043a9c2dd195c96ac8e2686a6bd31f96966ef4dfef1

  • actions-runner-linux-arm-2.286.0-noexternals.tar.gz befe0e6a507d5948ea2f98e3da6561c62109c1174e5543304b5f9b2d7a234ab6

  • actions-runner-win-x64-2.286.0-noruntime.zip 3792a09f3825e348212092c9d05495fb252b4406629e54e207c4838170d4477e

  • actions-runner-osx-x64-2.286.0-noruntime.tar.gz c0e6894184b93b077aa44c34ed4c3a216d0b0e36625d8298f190dff89afd56f3

  • actions-runner-linux-x64-2.286.0-noruntime.tar.gz 92d6f0627e75ca98d6752226591f2997c811d4b15dc2dd4096b7b3a99a436be9

  • actions-runner-linux-arm64-2.286.0-noruntime.tar.gz 27b36cecbc9a70c050587f223400170fbaf95cd17d0fe8eb6f6bb41dc13fb40d

  • actions-runner-linux-arm-2.286.0-noruntime.tar.gz 55fe04bc4ef3f01461ee16f477a6d87bf7f81abfc8b5914b1e486ed5edad7fa4

  • actions-runner-win-x64-2.286.0-noruntime-noexternals.zip 9145f820523950129082f5b79120b9310b0ba0308cb8c50f1dd9e9c27b29927f

  • actions-runner-osx-x64-2.286.0-noruntime-noexternals.tar.gz c756c2985f54105879fbe9f62931db36dc1e831e9b0ec02b854aa571f29cf82c

  • actions-runner-linux-x64-2.286.0-noruntime-noexternals.tar.gz f8ad417b95a4dd9b81c609ac4db466fb794aee05e42692ea21e5a5fc4c3a02b6

  • actions-runner-linux-arm64-2.286.0-noruntime-noexternals.tar.gz 66e74074ee30e8b19604deb9a8979e764a2edfede6183df3392bbca566e1c9e5

  • actions-runner-linux-arm-2.286.0-noruntime-noexternals.tar.gz ef74038fc108977fef9514ed8468eef429fa9b59686494537ebf8a967e5ac5ec

v2.285.1

06 Dec 17:01
Compare
Choose a tag to compare

Features

  • n/a

Bugs

  • Revert node12 version due to fs.copyFileSync hang #1537

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.1/actions-runner-win-x64-2.285.1.zip -OutFile actions-runner-win-x64-2.285.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.285.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.285.1/actions-runner-osx-x64-2.285.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.285.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.285.1/actions-runner-linux-x64-2.285.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.285.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.285.1/actions-runner-linux-arm64-2.285.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.285.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.285.1/actions-runner-linux-arm-2.285.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.285.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.285.1.zip f79dbb6dfae9d42d0befb8cff30a145dd32c9b1df6ff280c9935c46884b001f3
  • actions-runner-osx-x64-2.285.1.tar.gz e46c1b305acaffab10a85d417cda804f4721707c85e5353ee3428b385642e6fd
  • actions-runner-linux-x64-2.285.1.tar.gz 5fd98e1009ed13783d17cc73f13ea9a55f21b45ced915ed610d00668b165d3b2
  • actions-runner-linux-arm64-2.285.1.tar.gz 8a0afe1ef136a07908de457f4017edabbce66524d56bd3d92179b3b3d2202917
  • actions-runner-linux-arm-2.285.1.tar.gz 90cd8e9dfbc4b165f8ae1f01ff3aba8f0db572d5cad3c96f1b3310510b4d0320