github actions/runner v2.281.1

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

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

  • Update error to say 'uninstall' not 'unconfigure' (#1179)
  • Typo fixed (#1289)

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

Don't miss a new runner release

NewReleases is sending notifications on new releases.