github actions/runner v2.280.0

latest releases: v2.317.0, v2.316.1, v2.316.0...
pre-release2 years ago

Features

  • Adds support for composite actions if the server supports it (#1222)
  • Adds generateIdTokenUri to env variables for actions (#1234)

Bugs

  • Prefer higher libicu versions in installDependencies.sh (#1228)

Misc

  • Send step telemetry to server on JobCompletion (#1229)
  • Print out the resolved SHA for each downloaded action (#1233)

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.0/actions-runner-win-x64-2.280.0.zip -OutFile actions-runner-win-x64-2.280.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.280.0.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.0/actions-runner-osx-x64-2.280.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.280.0.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.0/actions-runner-linux-x64-2.280.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.280.0.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.0/actions-runner-linux-arm64-2.280.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.280.0.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.0/actions-runner-linux-arm-2.280.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.280.0.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.0.zip d7a535e6d132296e0b1eb63548189c6d59d04c5c565ba9ffbeb78c07749bf3f2
  • actions-runner-osx-x64-2.280.0.tar.gz fdb221c5a6876c20001407ab5cee551621348c765de4926e08a169ee3c30e583
  • actions-runner-linux-x64-2.280.0.tar.gz 129f99f20ab04aa8ea67e5fd3a8fc82d5bee3bda7050b9f95e2d5d2ac34496c9
  • actions-runner-linux-arm64-2.280.0.tar.gz 6a2dae60e54e6de945089c1709161c6b1ea36f15a60e19c3355c480b8a0d95c7
  • actions-runner-linux-arm-2.280.0.tar.gz 2a9443aba2119a0b803580882e87cc1a55e9942a4287cd02dbef64cf83cce53d

Don't miss a new runner release

NewReleases is sending notifications on new releases.