github actions/runner v2.283.3

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

Features

Bugs

  • Fixed an issue where ephemeral runners did not restart after upgrading (#1396)

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.283.3/actions-runner-win-x64-2.283.3.zip -OutFile actions-runner-win-x64-2.283.3.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.283.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.283.3/actions-runner-osx-x64-2.283.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.283.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.283.3/actions-runner-linux-x64-2.283.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.283.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.283.3/actions-runner-linux-arm64-2.283.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.283.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.283.3/actions-runner-linux-arm-2.283.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.283.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.283.3.zip ce8f26affa95434dcbcb44b993f25d435fb3f66aad53048960f25ca426831d7f
  • actions-runner-osx-x64-2.283.3.tar.gz 74a840aac35a7ac3ba3f55f4aa7c241e67361f2ce29146b5fbf43e2db8be0df3
  • actions-runner-linux-x64-2.283.3.tar.gz 09aa49b96a8cbe75878dfcdc4f6d313e430d9f92b1f4625116b117a21caaba89
  • actions-runner-linux-arm64-2.283.3.tar.gz b2a0eeffdcd7b731298cf6fdb40e2a69d6c087310e812e8b2e34e643b6d3bfdf
  • actions-runner-linux-arm-2.283.3.tar.gz ae88feb1a2480be43b74a24b618f4da7e58d98a6ae54d1ad53ceedc265e27edf

Don't miss a new runner release

NewReleases is sending notifications on new releases.