github actions/runner v2.280.3

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

Features

Bugs

  • Fixed an issue where composite steps would not run on failure() or always() when the job failed (#1273)

Misc

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.3/actions-runner-win-x64-2.280.3.zip -OutFile actions-runner-win-x64-2.280.3.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.280.3.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.3/actions-runner-osx-x64-2.280.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.280.3.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.3/actions-runner-linux-x64-2.280.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.280.3.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.3/actions-runner-linux-arm64-2.280.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.280.3.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.3/actions-runner-linux-arm-2.280.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.280.3.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.3.zip d45e44d3266539c92293de235b6eea3cb2dc21fe3e5b98fbf3cfa97d38bdad9f
  • actions-runner-osx-x64-2.280.3.tar.gz 16683d7f180fe2255acb8b5f74142143f8ae9c894f61c51bf0c868199916e8fd
  • actions-runner-linux-x64-2.280.3.tar.gz 69dc323312e3c5547ba1e1cc46c127e2ca8ee7d7037e17ee6965ef6dac3c142b
  • actions-runner-linux-arm64-2.280.3.tar.gz 6b838e76a3ee3ead883e1b9b395e2044af473ccf78ed3ae86e94c8801a1b620b
  • actions-runner-linux-arm-2.280.3.tar.gz 025cc11af4974ce80f7f1c2af2c55a44c055c0c983d41361e37549e05a662889

Don't miss a new runner release

NewReleases is sending notifications on new releases.