Skip to content

Releases: actions/runner

v2.275.1

14 Dec 21:42
Compare
Choose a tag to compare

Features

  • Add labels in the script that register runner (#844)
  • Add proxy support for container actions (#840)

Bugs

  • Unset GTIHUB_ACTION_REPOSITORY and GITHUB_ACTION_REF for non-repo based actions #804
  • fix compat issue in timeline record state. #861

Misc

  • Crypto cleanup and enable usage of FIPS compliant crypto when required (#806)
  • Count actions resolve failures as infra failures (#851)

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

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.275.0

14 Dec 16:20
Compare
Choose a tag to compare

Features

  • Add labels in the script that register runner (#844)
  • Add proxy support for container actions (#840)

Bugs

  • Unset GTIHUB_ACTION_REPOSITORY and GITHUB_ACTION_REF for non-repo based actions #804

Misc

  • Crypto cleanup and enable usage of FIPS compliant crypto when required (#806)
  • Count actions resolve failures as infra failures (#851)

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

v2.274.2

16 Nov 13:39
9987a8d
Compare
Choose a tag to compare

Features

  • N/A

Bugs

  • N/A

Misc

  • Disabled add-path and set-env runner commands (#779)
  • Updated dotnet install scripts (#779)

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

v2.274.1

09 Nov 14:28
c3219cc
Compare
Choose a tag to compare

Features

  • N/A

Bugs

  • N/A

Misc

  • Add deprecation date to add-path and set-env runner commands (#796)

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

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.274.0

05 Nov 16:06
Compare
Choose a tag to compare

Features

  • Support environment URL parsing (#762, #778)

Bugs

  • Fixes #759 doesn't change proxy environment variables (#760)

Misc

  • Add .editorconfig (#768)

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

v2.273.6

02 Nov 19:28
Compare
Choose a tag to compare

Features

  • N/A

Bugs

  • Raise error for set-env, block set node_options using ::set-env:: (#784)

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

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.273.5

02 Oct 16:04
a79bab4
Compare
Choose a tag to compare

Features

  • Expose retention days in env for toolkit/artifacts package (#714)
  • Notify on unsecure commands (#731)

Bugs

  • N/A

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

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.273.4

17 Sep 18:25
Compare
Choose a tag to compare

Features

  • Allow registry credentials for job/service containers (#694)

Bugs

  • N/A

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

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

v2.273.3

16 Sep 15:28
Compare
Choose a tag to compare

Features

  • N/A

Bugs

  • N/A

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

v2.273.2

14 Sep 18:17
Compare
Choose a tag to compare

Features

  • N/A

Bugs

  • Fixed an issue where actions/checkout@v1 was not able to correctly set the working directory (#704)

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