releases.shpreview

v2.283.0

$npx -y @buildinternet/releases show rel_DFlVKALy0Z-Xri1fje38m

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 <!-- BEGIN SHA win-x64 -->590c1f689673ae5dc6a2bcf55dd6fcb72e1d69510481e9304f057be88735f64a<!-- END SHA win-x64 -->
  • actions-runner-osx-x64-2.283.0.tar.gz <!-- BEGIN SHA osx-x64 -->c0e15164dd883362fc0de0c654e8981980df194b99a07616167b299a28e5d6de<!-- END SHA osx-x64 -->
  • actions-runner-linux-x64-2.283.0.tar.gz <!-- BEGIN SHA linux-x64 -->663f138c970383a18d4ee73516cf70c9b558bcf463266c9ae2374c66c0975685<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.283.0.tar.gz <!-- BEGIN SHA linux-arm64 -->5ca6767213b182bffb563de2b1872e639d3c99653ed75f8edf439bae6d7eaf4b<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.283.0.tar.gz <!-- BEGIN SHA linux-arm -->ade6dbcfb02c968dab455cc243b2ab5542245d02b347c5c4f5966fe021e9c03d<!-- END SHA linux-arm -->

Fetched April 8, 2026