Skip to content

Releases: actions/runner

v2.315.0

26 Mar 19:22
a52c539
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.314.1...v2.315.0

Full Changelog: v2.313.0...v2.314.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

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.315.0/actions-runner-win-x64-2.315.0.zip -OutFile actions-runner-win-x64-2.315.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.315.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.315.0/actions-runner-win-arm64-2.315.0.zip -OutFile actions-runner-win-arm64-2.315.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.315.0.zip", "$PWD")

OSX 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.315.0/actions-runner-osx-x64-2.315.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.315.0.tar.gz

OSX arm64 (Apple silicon)

# 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.315.0/actions-runner-osx-arm64-2.315.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.315.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.315.0/actions-runner-linux-x64-2.315.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.315.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.315.0/actions-runner-linux-arm64-2.315.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.315.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.315.0/actions-runner-linux-arm-2.315.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.315.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.315.0.zip 7bb01772ec66a72f733bcae6a641d3f2c6551d8b298bdd022e4b35ab59773b5a
  • actions-runner-win-arm64-2.315.0.zip 8036385aba68c828306a20ecfe6be2fb5bfeaa6a3a4b5779d6ed6d0d604fbbba
  • actions-runner-osx-x64-2.315.0.tar.gz 619c41a338b81f8e4613dad91e6c3c27fd0944e28731a914395879a88097f9f7
  • actions-runner-osx-arm64-2.315.0.tar.gz a777c481e27eedf68ef5bf88c1a853f69835542ff1916863afba74b2104c3851
  • actions-runner-linux-x64-2.315.0.tar.gz 6362646b67613c6981db76f4d25e68e463a9af2cc8d16e31bfeabe39153606a0
  • actions-runner-linux-arm64-2.315.0.tar.gz d9d58b178eca5fb65d93d151f3b62bde967f8cbec7c72e9b0976e9312b7f7dda
  • actions-runner-linux-arm-2.315.0.tar.gz d84fc4854c0c9236b35219a337a359a205cae4da44b86f948f1d1e47cbe32073

v2.314.1

27 Feb 20:33
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.313.0...v2.314.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

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.314.1/actions-runner-win-x64-2.314.1.zip -OutFile actions-runner-win-x64-2.314.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.314.1.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.314.1/actions-runner-win-arm64-2.314.1.zip -OutFile actions-runner-win-arm64-2.314.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.314.1.zip", "$PWD")

OSX 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.314.1/actions-runner-osx-x64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.314.1.tar.gz

OSX arm64 (Apple silicon)

# 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.314.1/actions-runner-osx-arm64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.314.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.314.1/actions-runner-linux-x64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.314.1.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.314.1/actions-runner-linux-arm64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.314.1.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.314.1/actions-runner-linux-arm-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.314.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.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.314.1.zip 2e1d73c3fe00ad37c359e4f48bd09aa88ef09a46fca16d6f1e94776ccf67fc27
  • actions-runner-win-arm64-2.314.1.zip acc807696d1dcad6fb45f6038f884185c54c48127445c365e86d03adb164a9e2
  • actions-runner-osx-x64-2.314.1.tar.gz 3faff4667d6d12c41da962580168415d628e3ffba9924b9ac995752087efc921
  • actions-runner-osx-arm64-2.314.1.tar.gz e34dab0b4707ad9a9db75f5edf47a804e293af853967a5e0e3b29c8c65f3a004
  • actions-runner-linux-x64-2.314.1.tar.gz 6c726a118bbe02cd32e222f890e1e476567bf299353a96886ba75b423c1137b5
  • actions-runner-linux-arm64-2.314.1.tar.gz 3d27b1340086115a118e28628a11ae727ecc6b857430c4b1b6cbe64f1f3b6789
  • actions-runner-linux-arm-2.314.1.tar.gz a653dd46dafd47c9a3a6637a18161a1445ac6b9c3f6d6b0305be9e1ee65769af

v2.314.0

26 Feb 18:55
d8bce88
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.313.0...v2.314.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

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.314.0/actions-runner-win-x64-2.314.0.zip -OutFile actions-runner-win-x64-2.314.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.314.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.314.0/actions-runner-win-arm64-2.314.0.zip -OutFile actions-runner-win-arm64-2.314.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.314.0.zip", "$PWD")

OSX 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.314.0/actions-runner-osx-x64-2.314.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.314.0.tar.gz

OSX arm64 (Apple silicon)

# 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.314.0/actions-runner-osx-arm64-2.314.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.314.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.314.0/actions-runner-linux-x64-2.314.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.314.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.314.0/actions-runner-linux-arm64-2.314.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.314.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.314.0/actions-runner-linux-arm-2.314.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.314.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.314.0.zip 70737a3df30ff9bc0b395a0331309aba59da760eb50da4ea2ff5cb768fa7f6e4
  • actions-runner-win-arm64-2.314.0.zip e4677bbd8fa0a4fcab0491e6865cbd5cb0597eba0690ab8f5b097a15ef8d4554
  • actions-runner-osx-x64-2.314.0.tar.gz 5d928a482572e84f6c823a5f340e7fddec612cfad108908f4e4ea30cf58e370c
  • actions-runner-osx-arm64-2.314.0.tar.gz 4a24368657a5a994e8c4d2c0e4b304005e6b093ebd3081dd03e5e9436ba52b9e
  • actions-runner-linux-x64-2.314.0.tar.gz 82ac833f291f0f6b9b546f501043cab1ddb01935281403f435e78ee81a447756
  • actions-runner-linux-arm64-2.314.0.tar.gz cc9d28a9e7b6e9e37dea74ce55f5c314724e7f81225b8e3b0d3eaf1f27a90171
  • actions-runner-linux-arm-2.314.0.tar.gz a90fbc2d0bcce91be2d3d112cffde0c363b33ef9a807c05f238bcd5b75fa26a7

v2.313.0

07 Feb 20:32
1d47bfa
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.312.0...v2.313.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

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.313.0/actions-runner-win-x64-2.313.0.zip -OutFile actions-runner-win-x64-2.313.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.313.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.313.0/actions-runner-win-arm64-2.313.0.zip -OutFile actions-runner-win-arm64-2.313.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.313.0.zip", "$PWD")

OSX 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.313.0/actions-runner-osx-x64-2.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.313.0.tar.gz

OSX arm64 (Apple silicon)

# 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.313.0/actions-runner-osx-arm64-2.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.313.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.313.0/actions-runner-linux-x64-2.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.313.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.313.0/actions-runner-linux-arm64-2.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.313.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.313.0/actions-runner-linux-arm-2.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.313.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.313.0.zip c4cb3e5d9f0ab42ddc224cfdf9fb705397a7b20fd321536da5500259225fdf8a
  • actions-runner-win-arm64-2.313.0.zip 907796520d58527d0c0d0f7d85c1dd3a55146740aa21695cfa2e484223a6ed67
  • actions-runner-osx-x64-2.313.0.tar.gz 65dd2618b5afa5ae1394388b215da0b763d791b480ae09f0ead956e8f8864c83
  • actions-runner-osx-arm64-2.313.0.tar.gz 97258c75cf500f701f8549289c85d885a9497f7886c102bf4857eed8764a9143
  • actions-runner-linux-x64-2.313.0.tar.gz 56910d6628b41f99d9a1c5fe9df54981ad5d8c9e42fc14899dcc177e222e71c4
  • actions-runner-linux-arm64-2.313.0.tar.gz 44c306066a32c8df8b30b1258b19ed3437285baa4a1d6289f22cf38eca474603
  • actions-runner-linux-arm-2.313.0.tar.gz 8d71a3c94d68485e81d020637ee0d73a0ffd4c0b10df9ab1183d78c57a54af6a

v2.312.0

17 Jan 03:58
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.311.0...v2.312.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

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.312.0/actions-runner-win-x64-2.312.0.zip -OutFile actions-runner-win-x64-2.312.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.312.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.312.0/actions-runner-win-arm64-2.312.0.zip -OutFile actions-runner-win-arm64-2.312.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.312.0.zip", "$PWD")

OSX 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.312.0/actions-runner-osx-x64-2.312.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.312.0.tar.gz

OSX arm64 (Apple silicon)

# 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.312.0/actions-runner-osx-arm64-2.312.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.312.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.312.0/actions-runner-linux-x64-2.312.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.312.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.312.0/actions-runner-linux-arm64-2.312.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.312.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.312.0/actions-runner-linux-arm-2.312.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.312.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.312.0.zip 847dbba12e7d0ae8f280481cf270110892a94657b63a6a4ab2da41c2b9831191
  • actions-runner-win-arm64-2.312.0.zip f40f4b904a7ee5dbb7bc449a81068dbe3468a9dc1bba8bd01e41faa236671c5e
  • actions-runner-osx-x64-2.312.0.tar.gz 648c63bb32eaa48ed50bff8a5000d9f3065359372b82739a992a00ce758bfcd2
  • actions-runner-osx-arm64-2.312.0.tar.gz f8cfb6bb4046b911c95038d51e21ba23df84ee81993d077c68ee1fc1bf71d42f
  • actions-runner-linux-x64-2.312.0.tar.gz 85c1bbd104d539f666a89edef70a18db2596df374a1b51670f2af1578ecbe031
  • actions-runner-linux-arm64-2.312.0.tar.gz 322e9ba6f0ec2350e6702457c453c5ea2517b5a6f3eac0f58a59110e6aa50fb0
  • actions-runner-linux-arm-2.312.0.tar.gz 2675be3914c2a65bbcfe3304f7f98d4b137e051005882e2eb938c6e128a59873

v2.311.0

23 Oct 18:20
f5cff30
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.310.2...v2.311.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

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.311.0/actions-runner-win-x64-2.311.0.zip -OutFile actions-runner-win-x64-2.311.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.311.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.311.0/actions-runner-win-arm64-2.311.0.zip -OutFile actions-runner-win-arm64-2.311.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.311.0.zip", "$PWD")

OSX 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.311.0/actions-runner-osx-x64-2.311.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.311.0.tar.gz

OSX arm64 (Apple silicon)

# 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.311.0/actions-runner-osx-arm64-2.311.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.311.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.311.0/actions-runner-linux-x64-2.311.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.311.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.311.0/actions-runner-linux-arm64-2.311.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.311.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.311.0/actions-runner-linux-arm-2.311.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.311.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.311.0.zip e629628ce25c1a7032d845f12dfe3dced630ca13a878b037dde77f5683b039dd

  • actions-runner-win-arm64-2.311.0.zip 7844fbb802116afd02efa21ee4b3a54201b121727e7671f19f32c0d760b0fd11

  • actions-runner-osx-x64-2.311.0.tar.gz f4d8d1dd850fd0889e0d250c82fa587b0e21934f8441143ee6772284b2ae6211

  • actions-runner-osx-arm64-2.311.0.tar.gz fa2f107dbce709807bae014fb3121f5dbe106211b6bbe3484c41e3b30828d6b2

  • actions-runner-linux-x64-2.311.0.tar.gz 29fc8cf2dab4c195bb147384e7e2c94cfd4d4022c793b346a6175435265aa278

  • actions-runner-linux-arm64-2.311.0.tar.gz 5d13b77e0aa5306b6c03e234ad1da4d9c6aa7831d26fd7e37a3656e77153611e

  • actions-runner-linux-arm-2.311.0.tar.gz 806c63e3cdb92fa32fb0cf2409fd468c9929e3bfb4db7f80b9a7655d53bbb9dd

  • actions-runner-win-x64-2.311.0-noexternals.zip b251dbf39d6f0dd0f50e5ad8dc07699b009c890008c116fbe4e56a26fe1506f0

  • actions-runner-win-arm64-2.311.0-noexternals.zip 90adaf90024a628487bcd4070a42e4ecc8bfe3484dcac56ad6e5f5e7eac965fd

  • actions-runner-osx-x64-2.311.0-noexternals.tar.gz 0d572cafe77ac25222b2001411134c5c0fdf0b5d25dcf7a043717a9eebdefcf9

  • actions-runner-osx-arm64-2.311.0-noexternals.tar.gz 2560b5509da58be3329745dbe5bdbe69ba43c4134d57a2a5ae4c69654aa6dea2

  • actions-runner-linux-x64-2.311.0-noexternals.tar.gz c4376be98bc5625ad9817e64c3c8dfd812a9554fe86fed38bdf97d29aaf14588

  • actions-runner-linux-arm64-2.311.0-noexternals.tar.gz 69a664fb025f0e146b96813ed0a22cc3722030ef445b41f44309d99d7c89324b

  • actions-runner-linux-arm-2.311.0-noexternals.tar.gz 3e35f3a0e369a0bd11a2b6580b77907a87e5f8de08b75b2dea158617b450b7cf

  • actions-runner-win-x64-2.311.0-noruntime.zip 418ebb4bcd89845fc10979134c3ff1becec97be1939986ebf84194982be9ca67

  • actions-runner-win-arm64-2.311.0-noruntime.zip cebc645f1852f365d5a505facc3f502b23e67242c6eecbed1d6bc97d1bfe9ae2

  • actions-runner-osx-x64-2.311.0-noruntime.tar.gz ddfcd538875f82f189cecd40e3c72ce34e3026f11612553872a07d088d33c6f3

  • actions-runner-osx-arm64-2.311.0-noruntime.tar.gz 90f809a0cb151c8be805042ca0caa5021c8b6973de5b3e228ca0b303a29455c4

  • actions-runner-linux-x64-2.311.0-noruntime.tar.gz 082e9e587331690c6baabf82e7849de34a011801cdff71c43c0706380b8f33f2

  • actions-runner-linux-arm64-2.311.0-noruntime.tar.gz a35f2183753989a5c101731035745cd6aa5c0815383b7a13cdaf85f0a33b6be5

  • actions-runner-linux-arm-2.311.0-noruntime.tar.gz 28288c0e11f5c4ec62a26aebc1db908d00effe89ad3f4f2e65266bef241f8a6c

  • actions-runner-win-x64-2.311.0-noruntime-noexternals.zip 98bef745c59c7530ac7680d63ef743d360ea9f82f03feb32a9d270bdbbb2878d

  • actions-runner-win-arm64-2.311.0-noruntime-noexternals.zip 5d7290b94edd8eebc0030d0fbb83129a762cf83e44b57ac402cc8b6d5879f1df

  • actions-runner-osx-x64-2.311.0-noruntime-noexternals.tar.gz 0b7026446b73e0ee8c8ffa58bbb567856fa484e4b3566f54efe505cdc577494c

  • actions-runner-osx-arm64-...

v2.310.2

10 Oct 18:33
Compare
Choose a tag to compare

What's Changed

  • Prepare runner release 2.309.0 by @johnsudol in #2833
  • remove debug-only flag from stale bot action by @ruvceskistefan in #2834
  • Calculate docker instance label based on the hash of the config by @nikola-jokic in #2683
  • Correcting zen address by @Pantelis-Santorinios in #2855
  • Update dotnet sdk to latest version @6.0.414 by @github-actions in #2852
  • Bump @typescript-eslint/parser from 6.4.1 to 6.7.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2845
  • Bump @types/node from 20.5.6 to 20.6.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2854
  • Bump eslint-plugin-github from 4.9.2 to 4.10.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2808
  • Bump @typescript-eslint/parser from 6.7.0 to 6.7.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2858
  • Bump prettier from 3.0.2 to 3.0.3 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2860
  • Bump @vercel/ncc from 0.36.1 to 0.38.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2859
  • Bump @typescript-eslint/eslint-plugin from 6.4.1 to 6.7.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2861
  • Remove unused code in AgentManager. by @TingluoHuang in #2866
  • GetAgents from all runner groups durning config. by @TingluoHuang in #2865
  • Change alpine from vst blobs to OSS gha alpine build by @vanZeben in #2871
  • Bump node 16 to v16.20.2 by @vanZeben in #2872
  • Bump directly dotnet vulnerable packages by @nikola-jokic in #2870
  • Fix ArgumentOutOfRangeException in PowerShellPostAmpersandEscape. by @TingluoHuang in #2875
  • bump container hook version in runner image by @nikola-jokic in #2881
  • Use Directory.EnumerateFiles instead of Directory.GetFiles in WhichUtil. by @TingluoHuang in #2882
  • Add warning about node16 deprecation by @takost in #2887
  • Throw TimeoutException instead of OperationCanceledException on the final retry in DownloadRepositoryAction by @TingluoHuang in #2895
  • Update message when runners are deleted by @thboop in #2896
  • Do not give up if Results is powering logs by @yacaovsnc in #2893
  • Allow use action archive cache to speed up workflow jobs. by @TingluoHuang in #2857
  • Upgrade docker engine to 24.0.6 in the runner container image by @Link- in #2886
  • Collect telemetry to measure upload speed for different backend. by @TingluoHuang in #2912
  • Use RawHttpMessageHandler and VssHttpRetryMessageHandler in ResultsHttpClient by @yacaovsnc in #2908
  • Retries to lock Services database on Windows by @sugymt in #2880
  • Update default version to node20 by @takost in #2844
    • Revert "Update default version to node20" by @takost in #2918
  • Fixed Attempt typo by @corycalahan in #2849
  • Fix typo by @rajbos in #2670

New Contributors

Full Changelog: v2.309.0...v2.310.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

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.310.2/actions-runner-win-x64-2.310.2.zip -OutFile actions-runner-win-x64-2.310.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.310.2.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.310.2/actions-runner-win-arm64-2.310.2.zip -OutFile actions-runner-win-arm64-2.310.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.310.2.zip", "$PWD")

OSX 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.310.2/actions-runner-osx-x64-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.310.2.tar.gz

OSX arm64 (Apple silicon)

# 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.310.2/actions-runner-osx-arm64-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.310.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.310.2/actions-runner-linux-x64-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.310.2.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.310.2/actions-runner-linux-arm64-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.310.2.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.310.2/actions-runner-linux-arm-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.310.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.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.310.2.zip cc4c9e357345a33bd99834daaf2e051730305e0a4e33e5a6b47d39e6a93844e4

  • actions-runner-win-arm64-2.310.2.zip ab6cc1f3ab4c866eee80c55ef92f7464ecd1d12caa6acc45bb9d6b1f99b8c92a

  • actions-runner-osx-x64-2.310.2.tar.gz 6e3e6017c25cf678bcc7015121aa64faa1c43e6243ee43a88d26c881fe60e324

  • actions-runner-osx-arm64-2.310.2.tar.gz 313b0066ba7f6c0a818e088f965b147320daad8f9ab6eac1b302ea4ccfb66733

  • actions-runner-linux-x64-2.310.2.tar.gz fb28a1c3715e0a6c5051af0e6eeff9c255009e2eec6fb08bc2708277fbb49f93

  • actions-runner-linux-arm64-2.310.2.tar.gz a64e2d69d022c269bfa5be9c3fbceecc95f6ec415688b4e85bbccd98e30a85b7

  • actions-runner-linux-arm-2.310.2.tar.gz 2b0d82479c73201b8a1058c5d8f4e7efaa3fe0502fc6d2f2f03cddbdb66ce320

  • actions-runner-win-x64-2.310.2-noexternals.zip 2af4b7171061a9a58e346814ea4a97f08d43ea07549b584c365002bf040b1d13

  • actions-runner-win-arm64-2.310.2-noexternals.zip 5af267a3f85b7c7c4586dc62...

v2.310.1

10 Oct 15:29
Compare
Choose a tag to compare

What's Changed

  • Prepare runner release 2.309.0 by @johnsudol in #2833
  • remove debug-only flag from stale bot action by @ruvceskistefan in #2834
  • Calculate docker instance label based on the hash of the config by @nikola-jokic in #2683
  • Correcting zen address by @Pantelis-Santorinios in #2855
  • Update dotnet sdk to latest version @6.0.414 by @github-actions in #2852
  • Bump @typescript-eslint/parser from 6.4.1 to 6.7.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2845
  • Bump @types/node from 20.5.6 to 20.6.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2854
  • Bump eslint-plugin-github from 4.9.2 to 4.10.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2808
  • Bump @typescript-eslint/parser from 6.7.0 to 6.7.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2858
  • Bump prettier from 3.0.2 to 3.0.3 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2860
  • Bump @vercel/ncc from 0.36.1 to 0.38.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2859
  • Bump @typescript-eslint/eslint-plugin from 6.4.1 to 6.7.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2861
  • Remove unused code in AgentManager. by @TingluoHuang in #2866
  • GetAgents from all runner groups durning config. by @TingluoHuang in #2865
  • Change alpine from vst blobs to OSS gha alpine build by @vanZeben in #2871
  • Bump node 16 to v16.20.2 by @vanZeben in #2872
  • Bump directly dotnet vulnerable packages by @nikola-jokic in #2870
  • Fix ArgumentOutOfRangeException in PowerShellPostAmpersandEscape. by @TingluoHuang in #2875
  • bump container hook version in runner image by @nikola-jokic in #2881
  • Use Directory.EnumerateFiles instead of Directory.GetFiles in WhichUtil. by @TingluoHuang in #2882
  • Add warning about node16 deprecation by @takost in #2887
  • Throw TimeoutException instead of OperationCanceledException on the final retry in DownloadRepositoryAction by @TingluoHuang in #2895
  • Update message when runners are deleted by @thboop in #2896
  • Do not give up if Results is powering logs by @yacaovsnc in #2893
  • Allow use action archive cache to speed up workflow jobs. by @TingluoHuang in #2857
  • Upgrade docker engine to 24.0.6 in the runner container image by @Link- in #2886
  • Collect telemetry to measure upload speed for different backend. by @TingluoHuang in #2912
  • Use RawHttpMessageHandler and VssHttpRetryMessageHandler in ResultsHttpClient by @yacaovsnc in #2908
  • Retries to lock Services database on Windows by @sugymt in #2880
  • Update default version to node20 by @takost in #2844
    • Revert "Update default version to node20" by @takost in #2918
  • Fixed Attempt typo by @corycalahan in #2849
  • Fix typo by @rajbos in #2670

New Contributors

Full Changelog: v2.309.0...v2.310.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

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.310.1/actions-runner-win-x64-2.310.1.zip -OutFile actions-runner-win-x64-2.310.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.310.1.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.310.1/actions-runner-win-arm64-2.310.1.zip -OutFile actions-runner-win-arm64-2.310.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.310.1.zip", "$PWD")

OSX 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.310.1/actions-runner-osx-x64-2.310.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.310.1.tar.gz

OSX arm64 (Apple silicon)

# 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.310.1/actions-runner-osx-arm64-2.310.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.310.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.310.1/actions-runner-linux-x64-2.310.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.310.1.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.310.1/actions-runner-linux-arm64-2.310.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.310.1.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.310.1/actions-runner-linux-arm-2.310.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.310.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.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.310.1.zip e75c0da3774251ecd0d55b0034b3adc3cbcb5ca821481ccb377d1c4e4bda6d36

  • actions-runner-win-arm64-2.310.1.zip 98804c13959cb41f0d27703504f512b679b46b1da85c49e774e86712bcbf9f01

  • actions-runner-osx-x64-2.310.1.tar.gz 0e93b3dbdeb5d470373f6f9c8d04990b1c673ff03f1e441be1070ee861ba7a8d

  • actions-runner-osx-arm64-2.310.1.tar.gz 92d40e3ef59a095b54e2f752808bc1af6509955b307197c56b2724a045d30df4

  • actions-runner-linux-x64-2.310.1.tar.gz f3fcb14066b7f57c750875c18dd83cc7e440edfac7e9f6242a7e44d1dc36479e

  • actions-runner-linux-arm64-2.310.1.tar.gz 4e5362d53163e57f376bf2cbf42a7fa3f66b97d0630cd7c7241b43c34d130b98

  • actions-runner-linux-arm-2.310.1.tar.gz 133095d88de49d4dc3cb331ad61affecf8b8bab31a02b916fbb1968328ac3e44

  • actions-runner-win-x64-2.310.1-noexternals.zip 1501f3380feed7236b7180b27e2ef99f3bc69390e07265d7ea619b3e0d1a9c6f

  • actions-runner-win-arm64-2.310.1-noexternals.zip c390493551be7c9963c146e2...

v2.310.0

09 Oct 13:49
6b9ba79
Compare
Choose a tag to compare

What's Changed

  • Prepare runner release 2.309.0 by @johnsudol in #2833
  • remove debug-only flag from stale bot action by @ruvceskistefan in #2834
  • Calculate docker instance label based on the hash of the config by @nikola-jokic in #2683
  • Correcting zen address by @Pantelis-Santorinios in #2855
  • Update dotnet sdk to latest version @6.0.414 by @github-actions in #2852
  • Bump @typescript-eslint/parser from 6.4.1 to 6.7.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2845
  • Bump @types/node from 20.5.6 to 20.6.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2854
  • Bump eslint-plugin-github from 4.9.2 to 4.10.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2808
  • Bump @typescript-eslint/parser from 6.7.0 to 6.7.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2858
  • Bump prettier from 3.0.2 to 3.0.3 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2860
  • Bump @vercel/ncc from 0.36.1 to 0.38.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2859
  • Bump @typescript-eslint/eslint-plugin from 6.4.1 to 6.7.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2861
  • Remove unused code in AgentManager. by @TingluoHuang in #2866
  • GetAgents from all runner groups durning config. by @TingluoHuang in #2865
  • Change alpine from vst blobs to OSS gha alpine build by @vanZeben in #2871
  • Bump node 16 to v16.20.2 by @vanZeben in #2872
  • Bump directly dotnet vulnerable packages by @nikola-jokic in #2870
  • Fix ArgumentOutOfRangeException in PowerShellPostAmpersandEscape. by @TingluoHuang in #2875
  • bump container hook version in runner image by @nikola-jokic in #2881
  • Use Directory.EnumerateFiles instead of Directory.GetFiles in WhichUtil. by @TingluoHuang in #2882
  • Add warning about node16 deprecation by @takost in #2887
  • Throw TimeoutException instead of OperationCanceledException on the final retry in DownloadRepositoryAction by @TingluoHuang in #2895
  • Update message when runners are deleted by @thboop in #2896
  • Do not give up if Results is powering logs by @yacaovsnc in #2893
  • Allow use action archive cache to speed up workflow jobs. by @TingluoHuang in #2857
  • Upgrade docker engine to 24.0.6 in the runner container image by @Link- in #2886
  • Collect telemetry to measure upload speed for different backend. by @TingluoHuang in #2912
  • Use RawHttpMessageHandler and VssHttpRetryMessageHandler in ResultsHttpClient by @yacaovsnc in #2908
  • Retries to lock Services database on Windows by @sugymt in #2880
  • Update default version to node20 by @takost in #2844
  • Fixed Attempt typo by @corycalahan in #2849
  • Fix typo by @rajbos in #2670

New Contributors

Full Changelog: v2.309.0...v2.310.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

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.310.0/actions-runner-win-x64-2.310.0.zip -OutFile actions-runner-win-x64-2.310.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.310.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.310.0/actions-runner-win-arm64-2.310.0.zip -OutFile actions-runner-win-arm64-2.310.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.310.0.zip", "$PWD")

OSX 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.310.0/actions-runner-osx-x64-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.310.0.tar.gz

OSX arm64 (Apple silicon)

# 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.310.0/actions-runner-osx-arm64-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.310.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.310.0/actions-runner-linux-x64-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.310.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.310.0/actions-runner-linux-arm64-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.310.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.310.0/actions-runner-linux-arm-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.310.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.310.0.zip b2ad34e2b7b5ecff93d8f022a1b9ae872d5116951013393b0d86ef290f426d57

  • actions-runner-win-arm64-2.310.0.zip 9cf5df1cb66b82b7feaed4d6891b1e0b97546e78c4c9a6626ecc2994e06d5075

  • actions-runner-osx-x64-2.310.0.tar.gz 2d60c6a09448cd5263523bf840f46d8ee177333926c891709ee4b2a871db8ec1

  • actions-runner-osx-arm64-2.310.0.tar.gz c458f67b4cd79461e756b75d2dda704dc009672d3e6b0927ac56cf8a802ff1fb

  • actions-runner-linux-x64-2.310.0.tar.gz 7ed6e2594aa8fc5b5a5e1986483f6683746f85695f4266a525e27b0e8e233ca7

  • actions-runner-linux-arm64-2.310.0.tar.gz 4aa4762880f3b17ff63ce585dd26aac783011c36bd034cdc06ca410d941d5274

  • actions-runner-linux-arm-2.310.0.tar.gz 1ad707e1e9eb03ae6ca7d04049dd00202325142f3f1122c6d46eb46ba486eb69

  • actions-runner-win-x64-2.310.0-noexternals.zip 03e99bd9aed88685f7942d9a18d96ddb1af7c4da11c6153e7f593a6f1e96ac50

  • actions-runner-win-arm64-2.310.0-noexternals.zip b0d8ccc824a62d3fee71b9b390b1d286a3dd62b84f1d6ed0b3030ca7af6a443b

  • actions-runner-osx-x64-...

v2.309.0

07 Sep 16:42
bdfef34
Compare
Choose a tag to compare

What's Changed

  • Bump @types/node from 12.12.14 to 20.4.10 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2759
  • Trace x-github-request-id when download action tarball. by @TingluoHuang in #2755
  • Fix typo by @kyanny in #2741
  • Bump prettier from 3.0.1 to 3.0.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2772
  • Bump @types/node from 20.4.10 to 20.5.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2773
  • Revert "Fixed a bug where a misplaced = character could bypass here… by @cory-miller in #2774
  • Filter NODE_OPTIONS from env for file output by @cory-miller in #2775
  • Bump @types/node from 20.5.0 to 20.5.1 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2781
  • Update Docker Version in Images by @ajschmidt8 in #2694
  • Bump @types/node from 20.5.1 to 20.5.4 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2789
  • Bump @typescript-eslint/parser from 6.4.0 to 6.4.1 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2785
  • Bump Microsoft.AspNet.WebApi.Client from 5.2.4 to 5.2.9 in /src by @dependabot in #2751
  • Bump System.Buffers from 4.3.0 to 4.5.1 in /src by @dependabot in #2749
  • Bump dotnet/runtime-deps from 6.0-jammy to 7.0-jammy in /images by @dependabot in #2745
  • Remove need to manually compile JS binary for hashFiles utility by @vanZeben in #2770
  • Revert "Bump dotnet/runtime-deps from 6.0-jammy to 7.0-jammy in /images" by @TingluoHuang in #2790
  • Query runner by name on server side. by @TingluoHuang in #2771
  • Bump typescript from 5.1.6 to 5.2.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2795
  • Bump @types/node from 20.5.4 to 20.5.6 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2796
  • Bump Newtonsoft.Json from 13.0.1 to 13.0.3 in /src by @dependabot in #2797
  • Support replacing runners in v2 flow by @luketomlinson in #2791
  • Delegating handler for Http redirects by @paveliak in #2814
  • Add references to the firewall requirements docs by @paveliak in #2815
  • Create automated workflow that will auto-generate dotnet sdk patches by @vanZeben in #2776
  • Fixes minor issues with using proper output varaibles by @vanZeben in #2818
  • Throw NonRetryableException on GetNextMessage from broker as needed. by @TingluoHuang in #2828
  • Mark action download failures as infra failures by @cory-miller in #2827

New Contributors

Full Changelog: v2.308.0...v2.309.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

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.309.0/actions-runner-win-x64-2.309.0.zip -OutFile actions-runner-win-x64-2.309.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.309.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.309.0/actions-runner-win-arm64-2.309.0.zip -OutFile actions-runner-win-arm64-2.309.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.309.0.zip", "$PWD")

OSX 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.309.0/actions-runner-osx-x64-2.309.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.309.0.tar.gz

OSX arm64 (Apple silicon)

# 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.309.0/actions-runner-osx-arm64-2.309.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.309.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.309.0/actions-runner-linux-x64-2.309.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.309.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.309.0/actions-runner-linux-arm64-2.309.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.309.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.309.0/actions-runner-linux-arm-2.309.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.309.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.309.0.zip cd1920154e365689130aa1f90258e0da47faecce547d0374475cdd2554dbf09a

  • actions-runner-win-arm64-2.309.0.zip 114d11ba8b95c22946c642cc9190c2214f6a2da60c2996ae26e2d9dc176f994e

  • actions-runner-osx-x64-2.309.0.tar.gz cce9394ff3e619d24c6a285fb2a633202c115f058437675b53fedd8fb01ec7ce

  • actions-runner-osx-arm64-2.309.0.tar.gz 67c1accb9cdc2138fc797d379c295896c01c8f5f4240e7e674f99a492bd1c668

  • actions-runner-linux-x64-2.309.0.tar.gz 2974243bab2a282349ac833475d241d5273605d3628f0685bd07fb5530f9bb1a

  • actions-runner-linux-arm64-2.309.0.tar.gz b172da68eef96d552534294e4fb0a3ff524e945fc5d955666bab24eccc6ed149

  • actions-runner-linux-arm-2.309.0.tar.gz 97d3c06c8e2b33fcab4c5afd0237e596c52cc4450465382bcbd49a4b23b978a9

  • actions-runner-win-x64-2.309.0-noexternals.zip 3be84215fa5658db013da201d38abd147bfbc48bf8775c62b2da8b760a1a9afe

  • actions-runner-win-arm64-2.309.0-noexternals.zip 914d512a90bb9b090701cffb11bb4b413d2f7a9e09e7ddad7c3b2d439c090461

  • actions-runner-osx-x64-2.309.0-noexternals.tar.gz 4397b8b0722b2223e50a7490720059786ce7429e8e5de81905671562f0a2291e

  • actions-runner-osx-arm64-2.309.0-noexternals.tar.gz ebe017bde8ea8939ef1633f003b03bc5c461e0fc843e477e21d4df402d08abde

  • actions-runner-linux-x64-2.309.0-noexternals.tar.gz 58ae2e9e6425f4acab67fbdaf6362f8cb893d5884a660ef1b0f3d983af3df1e0

  • actions-runner-linux-arm64-2.309.0-noexternals.tar.gz de2cbc67d23eb3c479bc7e6c24abb74a589d8ce7f6c2aa1...