github actions/runner v2.276.1

latest releases: v2.319.1, v2.319.0, v2.318.0...
3 years ago

Features

Bugs

  • Downgrade runner to .NET 3 to address an issue with broken pipes in Ubuntu (#928)
  • Fixed an issue where FIPS Cryptography broke back-compat scenarios (#928)

Misc

  • Updated dotnet install scripts (#928)

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

Linux arm64 (Pre-release)

# 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.276.1/actions-runner-linux-arm64-2.276.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.276.1.tar.gz

Linux arm (Pre-release)

# 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.276.1/actions-runner-linux-arm-2.276.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.276.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.276.1.zip 80d7400c7fd99ff3702b600466579aad7d16b5dce33f3b15cc82397f2dca9441
  • actions-runner-osx-x64-2.276.1.tar.gz 9029e7a9c61ce40152b841f5345aad5a1c82aa451c402c54544c2a613a2051b7
  • actions-runner-linux-x64-2.276.1.tar.gz ab66438d5c6c21fc0deb4553bdc9a95c325a3e916df335da1273044e6ede535e
  • actions-runner-linux-arm64-2.276.1.tar.gz 77ba7bfe67f266df70cd040fbea6d433d1a063596056160cd5e3c439ac47fd70
  • actions-runner-linux-arm-2.276.1.tar.gz 15179f0cd85276379e60607339787a4aa386c13a066676cf2d3309cdc60d759d

Don't miss a new runner release

NewReleases is sending notifications on new releases.