Skip to content

v2.285.3

Compare
Choose a tag to compare
@github-actions github-actions released this 30 Jan 20:39

Features

  • n/a

Bugs

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

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.3/actions-runner-win-x64-2.285.3.zip -OutFile actions-runner-win-x64-2.285.3.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.285.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.285.3/actions-runner-osx-x64-2.285.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.285.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.285.3/actions-runner-linux-x64-2.285.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.285.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.285.3/actions-runner-linux-arm64-2.285.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.285.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.285.3/actions-runner-linux-arm-2.285.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.285.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.285.3.zip 145e6fa6a65aefcb83a5467755744fe44ea247d9a4c43ec2750185e87039456a
  • actions-runner-osx-x64-2.285.3.tar.gz 919a595817a202175f686d34448510b0b9665d9a2ee481dc2269ebfc7b65d73e
  • actions-runner-linux-x64-2.285.3.tar.gz 60ed632a167d6b4ad9b36cb60aef8083610e4115ca97493ea86fe05383b18707
  • actions-runner-linux-arm64-2.285.3.tar.gz fbe586463549f61c9a84017eb6f2f0d4b747ab65f9843ca900249fb6b0a50049
  • actions-runner-linux-arm-2.285.3.tar.gz 7a454561fef1e2c02137898613d8b1c4ee866b96788eddd2a6e0e90806927795