Releases: actions/runner
v2.285.0
Features
- Print source of secret in runs (Actions/Dependabot/None) #1411
- Support node.js 16 and bump node.js 12 version #1439
Bugs
- Fix a bug where local node action would crash in post-steps #1481
Misc
- Add telemetry around runner update process. #1497
- Improve telemetry to better diagnose runner configuration issues #1487
- Clean up dependencies #1470
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.0/actions-runner-win-x64-2.285.0.zip -OutFile actions-runner-win-x64-2.285.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.285.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.285.0/actions-runner-osx-x64-2.285.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.285.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.285.0/actions-runner-linux-x64-2.285.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.285.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.285.0/actions-runner-linux-arm64-2.285.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.285.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.285.0/actions-runner-linux-arm-2.285.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.285.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.285.0.zip 1364cf5c84cfc5a42080e285d2747bdc522527bb148249e39073f2aa6dac8f17
- actions-runner-osx-x64-2.285.0.tar.gz 8f1f66a5390ef34c5e6258037f58d6e269bcd953869b735153e6cf7d22131766
- actions-runner-linux-x64-2.285.0.tar.gz 87e4f032839466086dc7828f2e044bfd8fff33d57a009a2df7a03c163ac0f87b
- actions-runner-linux-arm64-2.285.0.tar.gz 742fed0e438a6e695f6284cdd9c448da5b38225ca9ad72002348e7d56322a837
- actions-runner-linux-arm-2.285.0.tar.gz 12f06cb2815c44d87bab877c582d32efc79149ef0f20cb0c20db2312d2f33a39
v2.284.0
Features
- Expose GITHUB_REF_* as environment variable (#1314)
- Add arch to runner context (#1372)
- Support Conditional Steps in Composite Actions (#1438)
- Log current runner version in terminal (#1441)
Bugs
- Makes the user keychains available to the service (#847)
- Use Actions Service health and api.github.com endpoints after connection failure on Actions Server and Hosted (#1385)
- Fix an issue where nested local composite actions did not correctly register post steps (#1433)
Misc
- Cleanup Older versions on MacOS now that we recreate node versions as needed (#1410)
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.284.0/actions-runner-win-x64-2.284.0.zip -OutFile actions-runner-win-x64-2.284.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.284.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.284.0/actions-runner-osx-x64-2.284.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.284.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.284.0/actions-runner-linux-x64-2.284.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.284.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.284.0/actions-runner-linux-arm64-2.284.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.284.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.284.0/actions-runner-linux-arm-2.284.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.284.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.284.0.zip 7785341894d93b040aaef6656786f44b8fc52d8042f267705bf287939ce58f71
- actions-runner-osx-x64-2.284.0.tar.gz 5f9dc650058151ddec7308d1fde89ab926af9dfcb5cf8137e6fe520baee8dbd3
- actions-runner-linux-x64-2.284.0.tar.gz 1ddfd7bbd3f2b8f5684a7d88d6ecb6de3cb2281a2a359543a018cc6e177067fc
- actions-runner-linux-arm64-2.284.0.tar.gz a7a4e31d93d5852710dbacbb5f024be581c337c1be92ba2c729bb81e756bd49b
- actions-runner-linux-arm-2.284.0.tar.gz 2891eefcd2cd0cea33aef2261b628017d0879f69d66481c18350e2e50f3933f3
v2.283.3
Features
Bugs
- Fixed an issue where ephemeral runners did not restart after upgrading (#1396)
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.283.3/actions-runner-win-x64-2.283.3.zip -OutFile actions-runner-win-x64-2.283.3.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.283.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.283.3/actions-runner-osx-x64-2.283.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.283.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.283.3/actions-runner-linux-x64-2.283.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.283.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.283.3/actions-runner-linux-arm64-2.283.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.283.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.283.3/actions-runner-linux-arm-2.283.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.283.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.283.3.zip ce8f26affa95434dcbcb44b993f25d435fb3f66aad53048960f25ca426831d7f
- actions-runner-osx-x64-2.283.3.tar.gz 74a840aac35a7ac3ba3f55f4aa7c241e67361f2ce29146b5fbf43e2db8be0df3
- actions-runner-linux-x64-2.283.3.tar.gz 09aa49b96a8cbe75878dfcdc4f6d313e430d9f92b1f4625116b117a21caaba89
- actions-runner-linux-arm64-2.283.3.tar.gz b2a0eeffdcd7b731298cf6fdb40e2a69d6c087310e812e8b2e34e643b6d3bfdf
- actions-runner-linux-arm-2.283.3.tar.gz ae88feb1a2480be43b74a24b618f4da7e58d98a6ae54d1ad53ceedc265e27edf
v2.283.2
Features
Bugs
- Fixed an issue where ephemeral runners deregistered themselves when jobs were not successful (#1384)
- Fixed an issue where you were not able to un-configure a runner that changed groups (#1359)
- Disable
stop-commands
command using well known keywords as a token (#1371)
Misc
- Don't retry 422 error codes when downloading actions (#1352)
- Handle upgrade more smoothly on OSX (#1381)
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.283.2/actions-runner-win-x64-2.283.2.zip -OutFile actions-runner-win-x64-2.283.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.283.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.283.2/actions-runner-osx-x64-2.283.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.283.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.283.2/actions-runner-linux-x64-2.283.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.283.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.283.2/actions-runner-linux-arm64-2.283.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.283.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.283.2/actions-runner-linux-arm-2.283.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.283.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.283.2.zip ad249c02785a2efc9e44ee4b57e31310dd4552ef0a700a2e38fcdff00d9d53b4
- actions-runner-osx-x64-2.283.2.tar.gz d7d026b9bf1cb3f133cf53e79c71c0458a82b3f2bdb0a8859cd386ae18ee7c4a
- actions-runner-linux-x64-2.283.2.tar.gz ef2b350068f7d581eb6840e3c399a42f9cb808f7ee9a0456f3ad97c84ccb2a9d
- actions-runner-linux-arm64-2.283.2.tar.gz 990646bdced99679e752c1af9d26fdd8a93d319ce0e24c9a30c1c6b25e505ced
- actions-runner-linux-arm-2.283.2.tar.gz 0c0c67e8a1dddccf74303d58c59477f2d233aa3f2b62e076e7f257f854ae1198
v2.283.1
Features
- Collect more telemetry
- Make
runner.name
available as a runner context variable - Add attempt number (
run_attempt
) to GitHub context - When using the
--ephemeral
flag, ensure that the runner cleans up local.runner
and.credentials
files after completion (#1337)
Misc
- Improved network troubleshooting docs
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.283.1/actions-runner-win-x64-2.283.1.zip -OutFile actions-runner-win-x64-2.283.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.283.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.283.1/actions-runner-osx-x64-2.283.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.283.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.283.1/actions-runner-linux-x64-2.283.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.283.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.283.1/actions-runner-linux-arm64-2.283.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.283.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.283.1/actions-runner-linux-arm-2.283.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.283.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.283.1.zip b7edc2fcd125f76e2e0b59c803123e264c50b0186e771ba55210e0d129cf2692
- actions-runner-osx-x64-2.283.1.tar.gz c6f04c7c2c0f1706810fa15e5c0cd773310acbfe60dd4cd88459cbefa9a4bb75
- actions-runner-linux-x64-2.283.1.tar.gz aebaaf7c00f467584b921f432f9f9fb50abf06e1b6b226545fbcbdaa65ed3031
- actions-runner-linux-arm64-2.283.1.tar.gz 20c3d1e6ff03b0c5bc73c4ef7710e0048f509b19d5b789e26f468feafddb8eda
- actions-runner-linux-arm-2.283.1.tar.gz 9adaf1a7d79c6e9ba1d35bf25e71a44313f486807b124cce4bd60b54b58166a9
v2.283.0
Features
- Collect more telemetry
- Make
runner.name
available as a runner context variable - Add attempt number (
run_attempt
) to GitHub context - When using the
--ephemeral
flag, ensure that the runner cleans up local.runner
and.credentials
files after completion (#1337)
Misc
- Improved network troubleshooting docs
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.283.0/actions-runner-win-x64-2.283.0.zip -OutFile actions-runner-win-x64-2.283.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.283.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.283.0/actions-runner-osx-x64-2.283.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.283.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.283.0/actions-runner-linux-x64-2.283.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.283.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.283.0/actions-runner-linux-arm64-2.283.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.283.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.283.0/actions-runner-linux-arm-2.283.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.283.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.283.0.zip 590c1f689673ae5dc6a2bcf55dd6fcb72e1d69510481e9304f057be88735f64a
- actions-runner-osx-x64-2.283.0.tar.gz c0e15164dd883362fc0de0c654e8981980df194b99a07616167b299a28e5d6de
- actions-runner-linux-x64-2.283.0.tar.gz 663f138c970383a18d4ee73516cf70c9b558bcf463266c9ae2374c66c0975685
- actions-runner-linux-arm64-2.283.0.tar.gz 5ca6767213b182bffb563de2b1872e639d3c99653ed75f8edf439bae6d7eaf4b
- actions-runner-linux-arm-2.283.0.tar.gz ade6dbcfb02c968dab455cc243b2ab5542245d02b347c5c4f5966fe021e9c03d
v2.282.1
Features
N/A
Bugs
- Revert "More resilient VssConnection client retries in JobServer" (#1343)
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.282.1/actions-runner-win-x64-2.282.1.zip -OutFile actions-runner-win-x64-2.282.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.282.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.282.1/actions-runner-osx-x64-2.282.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.282.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.282.1/actions-runner-linux-x64-2.282.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.282.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.282.1/actions-runner-linux-arm64-2.282.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.282.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.282.1/actions-runner-linux-arm-2.282.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.282.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.282.1.zip 402d02877a290e24027d82fbee63746aa755416b13b7685821432237e6a2799b
- actions-runner-osx-x64-2.282.1.tar.gz 22908f9c84ef2e7b51e7660db12e8f7e601b7d912853db990b191defb0d59710
- actions-runner-linux-x64-2.282.1.tar.gz 1bd2e9762890f7b6bfd73043c106c09519eb865c66797d9558b83178854a2435
- actions-runner-linux-arm64-2.282.1.tar.gz f1c86b2453c412cb5cc23f2ec7140b376561b3bcb49a14549873f56fe4890691
- actions-runner-linux-arm-2.282.1.tar.gz 8b28dec426e72b2e42e2f749da7977ccd9ac50fe5088dacb0e89179f26dbca6e
v2.282.0
Features
- Support the
--ephemeral
flag (#660)- This optional flag will configure the runner to only take one job, and let the service un-configure the runner after that job finishes.
- Expect to see more info in the Github API documentation soon. We'll link to those docs directly as they become generally available!
Bugs
- Fix a bug in
script/delete
wherein a repo with multiple runners would be unable to find the correct runner (#1268) (#1269) - Mitigate a race condition when requesting an OIDC
Id_token
(#1320) - Make client retries more resilient in JobServer (#1316)
Misc
- Increase readability of colored console output (#1295) (#1319)
- Add more network troubleshooting to the docs (#1325)
- Bump path-parse from 1.0.6 to 1.0.7 (#1256)
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.282.0/actions-runner-win-x64-2.282.0.zip -OutFile actions-runner-win-x64-2.282.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.282.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.282.0/actions-runner-osx-x64-2.282.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.282.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.282.0/actions-runner-linux-x64-2.282.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.282.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.282.0/actions-runner-linux-arm64-2.282.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.282.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.282.0/actions-runner-linux-arm-2.282.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.282.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.282.0.zip 947670e6999ef8aba6c4e6e728cce3bcf8be7ec8176122d22d07607b1dcabbb3
- actions-runner-osx-x64-2.282.0.tar.gz 0f9397794838202426c47f619ae6fb8609041ca141ae1df10836a07c371a9baf
- actions-runner-linux-x64-2.282.0.tar.gz 22ca06edeb02b13bf16bce4d65cc479c3bfde49a4e8a8e927ab650ffa789680c
- actions-runner-linux-arm64-2.282.0.tar.gz 13688fdc7b4102d48cdb9f256c69b3561e2e198277bfcc026cfadbf09e6c3960
- actions-runner-linux-arm-2.282.0.tar.gz d919535fd4869cf5994c155febd29e37cb3b6a3b1ad988f289bcb1aca37a3610
v2.281.1
Features
- Allow setting default severity to "notice" (#1213)
- Show More Step Information in composite Actions (#1279)
Bugs
- Temporary fix for macOS runner upgrade crash loop. (#1304)
- Fixed an issue where GHES runners fail to download public docker images (#1199)
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.281.1/actions-runner-win-x64-2.281.1.zip -OutFile actions-runner-win-x64-2.281.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.281.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.281.1/actions-runner-osx-x64-2.281.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.281.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.281.1/actions-runner-linux-x64-2.281.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.281.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.281.1/actions-runner-linux-arm64-2.281.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.281.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.281.1/actions-runner-linux-arm-2.281.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.281.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.281.1.zip b8dccfef39c5d696443d98edd1ee57881075066bb62adef0a344fcb11bd19f1b
- actions-runner-osx-x64-2.281.1.tar.gz c10bfd8f01adfdda5f3e108547eacc862cdb6905e773ecb3a1717d1804756579
- actions-runner-linux-x64-2.281.1.tar.gz 04f6c17235d4b29fc1392d5fae63919a96e7d903d67790f81cffdd69c58cb563
- actions-runner-linux-arm64-2.281.1.tar.gz f424d953a4df285839e8bd73474c3f92307a5605e6d473313a130b30550d55bd
- actions-runner-linux-arm-2.281.1.tar.gz 3d0b11887e5bc4a1ceca824ed62b3a8e5a832884228fb9fc6278e8fbcec9b2bd
v2.281.0
Features
Bugs
- Fixed an issue where GHES runners fail to download public docker images (#1199)
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.281.0/actions-runner-win-x64-2.281.0.zip -OutFile actions-runner-win-x64-2.281.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.281.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.281.0/actions-runner-osx-x64-2.281.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.281.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.281.0/actions-runner-linux-x64-2.281.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.281.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.281.0/actions-runner-linux-arm64-2.281.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.281.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.281.0/actions-runner-linux-arm-2.281.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.281.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.281.0.zip ce4517d129af415348295ed8f41204bef11f47d7cf9aab2a50f96ef19c718da3
- actions-runner-osx-x64-2.281.0.tar.gz c2d0eafc1b206b8205b3fc8d435acdb68b84a03a0bd5248214fc8030dc462d4f
- actions-runner-linux-x64-2.281.0.tar.gz 1f57c3e897bb65dd11966c556f873159960933eab397ee5b6300409148a0f11c
- actions-runner-linux-arm64-2.281.0.tar.gz 16cc00483eef563cc8574711c3316c606690c6c2e18ee41fb9a1d0aa6bfe4d6e
- actions-runner-linux-arm-2.281.0.tar.gz 65287af3dc66225e05ca0b183a0c2157f1a601d2dc10bc03be86abb51d8b56c4