github actions/runner v2.278.0

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

Features

  • Use GITHUB_TOKEN for ghcr.io containers if credentials are not provided (#990)

Bugs

  • Do not trucate error message from template evaluation (#1038)
  • Make FileShare ReadWrite (#1033)
  • Mask secrets with double-quotes when passed to docker command line (#1002)
  • Delete script files before replacing during update (#984)

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.278.0/actions-runner-win-x64-2.278.0.zip -OutFile actions-runner-win-x64-2.278.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ; 
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.278.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.278.0/actions-runner-osx-x64-2.278.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.278.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.278.0/actions-runner-linux-x64-2.278.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.278.0.tar.gz

Linux arm64 (Pre-release)

# 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.278.0/actions-runner-linux-arm64-2.278.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.278.0.tar.gz

Linux arm (Pre-release)

# 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.278.0/actions-runner-linux-arm-2.278.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.278.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.278.0.zip 50c51ea8e47b48a79e5bb68df36b98de5c91dbf5b4f09a447883e98bdf01ba45
  • actions-runner-osx-x64-2.278.0.tar.gz 345a5a5b7d1b6849441de0ecb13d2d84a445d080220b4b0e9ca3e03e3b9fb6b2
  • actions-runner-linux-x64-2.278.0.tar.gz 1d01e521c1fc3e480498709746d0dcbef1845294bd94d4094e0abfbd9d0ef8b1
  • actions-runner-linux-arm64-2.278.0.tar.gz 69daadcbc7a9d50437f005cb6d74870dcc645a9c3a69c14d5235993bbab46f50
  • actions-runner-linux-arm-2.278.0.tar.gz 1a60189283f4bd180b63c5bdc0897d7cbb598857c30a58186d0c132f81ac042f

Don't miss a new runner release

NewReleases is sending notifications on new releases.