github actions/runner v2.280.1

latest releases: v2.316.1, v2.316.0, v2.315.0...
2 years ago

Features

Bugs

  • Fixed a bug where composite actions did not respect continue-on-error (#1238)
  • Fixed a bug where composite actions post steps did not have the correct step context (#1243)

Misc

  • Correctly finish Job when worker crashes with IO Exceptions (#1239)

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.280.1/actions-runner-win-x64-2.280.1.zip -OutFile actions-runner-win-x64-2.280.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.280.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.280.1/actions-runner-osx-x64-2.280.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.280.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.280.1/actions-runner-linux-x64-2.280.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.280.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.280.1/actions-runner-linux-arm64-2.280.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.280.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.280.1/actions-runner-linux-arm-2.280.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.280.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.280.1.zip b1afaeea51a10eac6ec897fd57e123858b5f620cf40ed6715fac34686e377b6e
  • actions-runner-osx-x64-2.280.1.tar.gz bd34eb125dfcf5daa78cafa5441ca11f05248a5878d0b914ca93685fb2c2a95b
  • actions-runner-linux-x64-2.280.1.tar.gz 24a8857b7f124f7c1852b030686a2f2205ec5d59ed7e2c0635a2c321d2b9fde6
  • actions-runner-linux-arm64-2.280.1.tar.gz 46a210da9c79ad964949091c58fd6c0be3fabd56b707b1bf743749822c3d45ec
  • actions-runner-linux-arm-2.280.1.tar.gz 59a8296d6b86662d912c128556291b301cb03ef33cfa025fa0365c9a4905f6f6

Don't miss a new runner release

NewReleases is sending notifications on new releases.