Skip to content

Releases: ubicloud/runner

v2.325.0

11 Jun 11:14
Compare
Choose a tag to compare

What's Changed

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

Windows arm64

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.325.0/actions-runner-win-arm64-2.325.0.zip -OutFile actions-runner-win-arm64-2.325.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.325.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.325.0/actions-runner-osx-x64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.325.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.325.0/actions-runner-osx-arm64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.325.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.325.0/actions-runner-linux-x64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.325.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.325.0/actions-runner-linux-arm64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.325.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.325.0/actions-runner-linux-arm-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.325.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.325.0.zip 929c123f10ea070d058a20cf462f7c4671634b157dbd6cccffd646f8638aca29
  • actions-runner-win-arm64-2.325.0.zip 925571dba698c2e1cfec5aa7208feb0f18f24382bd3b201e3815ec153091ae47
  • actions-runner-osx-x64-2.325.0.tar.gz d66eec90b70f17a1cd919275eac3cc57cd4926d1be44468d3b76fed644498a0c
  • actions-runner-osx-arm64-2.325.0.tar.gz f72a85e7fe74d1809563e20da98287ef3b79d72a14b6b785c30a38b38dc27696
  • actions-runner-linux-x64-2.325.0.tar.gz 4d94b95303e2abb3e3fede698ce0c306dbbed11227b688c67ecba1f2fbebf27f
  • actions-runner-linux-arm64-2.325.0.tar.gz 13358d8156c7677dcf82fd5105bf2a512f831989ea972f601c44c515ef5ac06e
  • actions-runner-linux-arm-2.325.0.tar.gz 0fcfecd7770fc7ea9c9d99aeab6bfc94fe830bcadfc7586018a3a6b306a2eaa4

v2.324.0

16 May 06:40
Compare
Choose a tag to compare

What's Changed

New Contributors

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

Windows arm64

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.324.0/actions-runner-win-arm64-2.324.0.zip -OutFile actions-runner-win-arm64-2.324.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.324.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.324.0/actions-runner-osx-x64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.324.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.324.0/actions-runner-osx-arm64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.324.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.324.0/actions-runner-linux-x64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.324.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.324.0/actions-runner-linux-arm64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.324.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.324.0/actions-runner-linux-arm-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.324.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.324.0.zip 5da4ecb0c5f25bfa67d2f55536e5890a92fcae6cc6e503137f1993d3e6d39faa
  • actions-runner-win-arm64-2.324.0.zip 3f7cd851ef5aac7c7f1764b5a883dbdd908b62ff5b023eb04c1bd77af90a1db8
  • actions-runner-osx-x64-2.324.0.tar.gz 5e911cfd35309e6e46a4839065b407011849527acedf6b75ac61871305c42644
  • actions-runner-osx-arm64-2.324.0.tar.gz da213946b12b30f577844230c655c66398010591bd476fb5145f0612c0b08420
  • actions-runner-linux-x64-2.324.0.tar.gz 03955d88ba7c304635c1c15f7eeae019cfa45eb7e785c1cf64ddae5d70c22a60
  • actions-runner-linux-arm64-2.324.0.tar.gz 2e89c56d843503308362e1a07ee64b1ec4f57adcc6345ae43ee1be2b4d22c490
  • actions-runner-linux-arm-2.324.0.tar.gz 1fae7108f63cc6ae591716d8fb089fd29d13a67b55811d66533721f57f26197e

v2.323.0

21 Mar 07:19
Compare
Choose a tag to compare

What's Changed

New Contributors

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

Windows arm64

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.323.0/actions-runner-win-arm64-2.323.0.zip -OutFile actions-runner-win-arm64-2.323.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.323.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.323.0/actions-runner-osx-x64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.323.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.323.0/actions-runner-osx-arm64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.323.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.323.0/actions-runner-linux-x64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.323.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.323.0/actions-runner-linux-arm64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.323.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.323.0/actions-runner-linux-arm-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.323.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.323.0.zip a507696e6f3f0d7cd03fb27b2f7e03c92b5d4eb867bc4f4976a8403aaa6d771a
  • actions-runner-win-arm64-2.323.0.zip 8c27130a7cecba1447e21c47bf166f0e12a96d3e2b2b84c0fe5753a95743431f
  • actions-runner-osx-x64-2.323.0.tar.gz b91fc56572db667256a313e538c1738bcfd69d96efbed4104e90c3f0112b8fd8
  • actions-runner-osx-arm64-2.323.0.tar.gz 7415ab268f279086bf3bb586c80b4982b63be2e37cff0418dba49b0877d88d1f
  • actions-runner-linux-x64-2.323.0.tar.gz 654dafa5825680eb37e7e109792127b80b0d67d36164be30ed63163c1bbf1f2e
  • actions-runner-linux-arm64-2.323.0.tar.gz 886b2825835edcc771bf158f3e9f9cfbc466571e403f8b20889286083f219568
  • actions-runner-linux-arm-2.323.0.tar.gz afad76d14cd8bddbe5c82cd1f5915326d4c1212367ab32b0c2a6db947ebeda23

v2.322.0

04 Feb 07:03
Compare
Choose a tag to compare

What's Changed

New Contributors

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

Windows arm64

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.322.0/actions-runner-win-arm64-2.322.0.zip -OutFile actions-runner-win-arm64-2.322.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.322.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.322.0/actions-runner-osx-x64-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.322.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.322.0/actions-runner-osx-arm64-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.322.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.322.0/actions-runner-linux-x64-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.322.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.322.0/actions-runner-linux-arm64-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.322.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.322.0/actions-runner-linux-arm-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.322.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.322.0.zip 36578ba923ae997f83d6972c673855156ae2d1eccfbb3ab450e818a50ead1213
  • actions-runner-win-arm64-2.322.0.zip c6ee1f334a4c4c93398f6cca275390da179bf9acff55b42f70eec03d6df14f4f
  • actions-runner-osx-x64-2.322.0.tar.gz 98f51f9baa01ad855deaed80fdc996d03d862428a96cfa998b7421214d2144c2
  • actions-runner-osx-arm64-2.322.0.tar.gz 228da003cc1016bbafdb0bab91224ee77b796b8755fc5ca4ed36eaf4781c80af
  • actions-runner-linux-x64-2.322.0.tar.gz 8f92e9b4a958a20e3e45592b101c6d6154e27741bd37c26d773e123bac6056cd
  • actions-runner-linux-arm64-2.322.0.tar.gz 0634ff50407100c0bfbae2bf6929657c531332fef6d4044bb5614a62ba30c95a
  • actions-runner-linux-arm-2.322.0.tar.gz 7d4426e3cb9c1667af6cf9000868fbadc08be1ff26f6bcdf4c989643ed33d954

v2.321.0

06 Jan 11:42
Compare
Choose a tag to compare

What's Changed

New Contributors

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

Windows arm64

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.321.0/actions-runner-win-arm64-2.321.0.zip -OutFile actions-runner-win-arm64-2.321.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.321.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.321.0/actions-runner-osx-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.321.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.321.0/actions-runner-osx-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.321.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.321.0/actions-runner-linux-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.321.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.321.0/actions-runner-linux-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.321.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.321.0/actions-runner-linux-arm-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.321.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.321.0.zip fdf38022f347436da62e895f9e3c3d8783faa392794d71bfbe41c57a973b87df
  • actions-runner-win-arm64-2.321.0.zip 63cb78658ceecc0ab918d4e93a2ca296b5dc110da08af4cd1e4e5927734dda0d
  • actions-runner-osx-x64-2.321.0.tar.gz 083224f1efceaa7212881ac83e9aec1d72f25461a476dc3d2b0803533dfddeaf
  • actions-runner-osx-arm64-2.321.0.tar.gz 7cc0da19fb5dd7da80b8f30c4ed55a0461c192319d820691290e5a45d0f9271b
  • actions-runner-linux-x64-2.321.0.tar.gz cc0cc220359999c6ef4c4255482bb1a96abdc9188dfe008696c023a6bbbdc5e5
  • actions-runner-linux-arm64-2.321.0.tar.gz fb14b5fd910bc1c1da08bae4ebefb2bef82610d2b19d7f58d50f4f1883281817
  • actions-runner-linux-arm-2.321.0.tar.gz 3b24bd5fc4108ab55af2112969dd52706f0b9ba432af15e7687be3d3fcce3f7d

v2.321.0-old1

26 Nov 16:00
Compare
Choose a tag to compare

What's Changed

New Contributors

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

Windows arm64

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.321.0/actions-runner-win-arm64-2.321.0.zip -OutFile actions-runner-win-arm64-2.321.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.321.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.321.0/actions-runner-osx-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.321.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.321.0/actions-runner-osx-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.321.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.321.0/actions-runner-linux-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.321.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.321.0/actions-runner-linux-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.321.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.321.0/actions-runner-linux-arm-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.321.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.321.0.zip e5e231cfcc32c65906b5b569a15a1875ee6e39a98ffd57872ff9aaf5a40312d5
  • actions-runner-win-arm64-2.321.0.zip c4cf225da6f8135b7f8a767dd2c503a451b12c91badcecf9ca70e9c946cded5e
  • actions-runner-osx-x64-2.321.0.tar.gz 31fb842456916681fafa8994e9a731bbd4b6bc2862d2cdd837b1cd4a81e0981e
  • actions-runner-osx-arm64-2.321.0.tar.gz ac535e6faa58ed2137045fe8321545048cf8131654ead1f3d7c8d4ea2c68135c
  • actions-runner-linux-x64-2.321.0.tar.gz be437ef7ae1ed81a689b6de59356dcab7d553b48a4d68a4fd4d1be1db8000447
  • actions-runner-linux-arm64-2.321.0.tar.gz 5d1659a761aaae632751a72c6d6d3680aa6420bc88c776cb238b00cb5d64a7c9
  • actions-runner-linux-arm-2.321.0.tar.gz d65994f176ccd9f232447fa0595d8d9f1c81158db4dead52de8df897e164bdbe

v2.320.0

07 Oct 07:55
Compare
Choose a tag to compare

What's Changed

  • Adding Snapshot additional mapping tokens actions#3468
  • Create launch httpclient using the right handler and setting actions#3476
  • Fix missing default user-agent for jitconfig runner actions#3473
  • Cleanup back-compat code for interpreting Run Service status codes actions#3456
  • Add runner or worker to the useragent actions#3457
  • Handle Error Body in Responses from Broker actions#3454
  • Fix issues for composite actions (Run Service flow) actions#3446
  • Trace GitHub RequestId to log actions#3442
  • Add jq, git, unzip and curl to default packages installed actions#3056
  • Add pid to user-agent and session owner actions#3432

Full Changelog: actions/runner@v2.319.1...v2.320.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.320.0/actions-runner-win-x64-2.320.0.zip -OutFile actions-runner-win-x64-2.320.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.320.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.320.0/actions-runner-win-arm64-2.320.0.zip -OutFile actions-runner-win-arm64-2.320.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.320.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.320.0/actions-runner-osx-x64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.320.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.320.0/actions-runner-osx-arm64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.320.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.320.0/actions-runner-linux-x64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.320.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.320.0/actions-runner-linux-arm64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.320.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.320.0/actions-runner-linux-arm-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.320.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.320.0.zip 8640461e9d1578de85af534620dcb782c61e4728044f2136b8c00a1df75b478b
  • actions-runner-win-arm64-2.320.0.zip 45bb8bbec468f67da7eed7881a289e722ee4a4a81f70ef175fa72c12b75d7736
  • actions-runner-osx-x64-2.320.0.tar.gz cc559c5b18d27147bb5c8501b54b7e0d67206cd0834784a94f09dd035c65ee5e
  • actions-runner-osx-arm64-2.320.0.tar.gz c4dd70c79cf691d21b9a2a2e1d93919413143539915d9a737cf1be7e6fc89b48
  • actions-runner-linux-x64-2.320.0.tar.gz 2fc7db2af185fd44083a7a6c0be9503ed2688b2e66c6e893e5efd62f9d8d9777
  • actions-runner-linux-arm64-2.320.0.tar.gz 770e17ce9f0caadb864ed2901e0668b921e20821e15ea9bb97b727a0eb6a99f2
  • actions-runner-linux-arm-2.320.0.tar.gz 64706914ac4c0b783c671aa909957d52d4eda1d51bd7b44431ed4a411ae2f973