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