github actions/runner v2.285.2

latest releases: v2.320.0, v2.319.1, v2.319.0...
pre-release2 years ago

Features

  • n/a

Bugs

  • Fixed an issue where container environment variables names or values could escape the docker command (#2108)

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.2/actions-runner-win-x64-2.285.2.zip -OutFile actions-runner-win-x64-2.285.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.285.2.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.2/actions-runner-osx-x64-2.285.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.285.2.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.2/actions-runner-linux-x64-2.285.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.285.2.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.2/actions-runner-linux-arm64-2.285.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.285.2.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.2/actions-runner-linux-arm-2.285.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.285.2.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.2.zip 7f49cebc40231ba8d5ddcb34a7f8d0f86f4fd3581221319bc711cb6a1d59baa6
  • actions-runner-osx-x64-2.285.2.tar.gz 51a7e268877a4e9da04a52ed3d3de211828b99eb4e8bb44e9a492bbe4b46e19b
  • actions-runner-linux-x64-2.285.2.tar.gz 7d209afedd4c2bbf6a3245ba61d4824221a41a9c0e3d535c46340d774ce79110
  • actions-runner-linux-arm64-2.285.2.tar.gz 6103a0acc9fc54306aa93d35e2026f469f91c31d45e8893a09f9014b59445073
  • actions-runner-linux-arm-2.285.2.tar.gz 25252b7bd74c65eaab0afd3420ba9b2311f620f6451d4e4476090ca1fa635dcc

Don't miss a new runner release

NewReleases is sending notifications on new releases.