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