github actions/runner v2.285.1

latest releases: v2.321.0, v2.320.0, v2.319.1...
2 years ago

Features

  • n/a

Bugs

  • Revert node12 version due to fs.copyFileSync hang #1537

Misc

  • n/a

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.285.1/actions-runner-win-x64-2.285.1.zip -OutFile actions-runner-win-x64-2.285.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.285.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.285.1/actions-runner-osx-x64-2.285.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.285.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.285.1/actions-runner-linux-x64-2.285.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.285.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.285.1/actions-runner-linux-arm64-2.285.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.285.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.285.1/actions-runner-linux-arm-2.285.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.285.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.285.1.zip f79dbb6dfae9d42d0befb8cff30a145dd32c9b1df6ff280c9935c46884b001f3
  • actions-runner-osx-x64-2.285.1.tar.gz e46c1b305acaffab10a85d417cda804f4721707c85e5353ee3428b385642e6fd
  • actions-runner-linux-x64-2.285.1.tar.gz 5fd98e1009ed13783d17cc73f13ea9a55f21b45ced915ed610d00668b165d3b2
  • actions-runner-linux-arm64-2.285.1.tar.gz 8a0afe1ef136a07908de457f4017edabbce66524d56bd3d92179b3b3d2202917
  • actions-runner-linux-arm-2.285.1.tar.gz 90cd8e9dfbc4b165f8ae1f01ff3aba8f0db572d5cad3c96f1b3310510b4d0320

Don't miss a new runner release

NewReleases is sending notifications on new releases.