Skip to content

Releases: ubicloud/runner

v2.329.0

16 Oct 12:55

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@v2.328.0...v2.329.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.329.0/actions-runner-win-x64-2.329.0.zip -OutFile actions-runner-win-x64-2.329.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.329.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.329.0/actions-runner-win-arm64-2.329.0.zip -OutFile actions-runner-win-arm64-2.329.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.329.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.329.0/actions-runner-osx-x64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.329.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.329.0/actions-runner-osx-arm64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.329.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.329.0/actions-runner-linux-x64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.329.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.329.0/actions-runner-linux-arm64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.329.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.329.0/actions-runner-linux-arm-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.329.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.329.0.zip 006a2406241917f031db26f65859b367912a346cdc8cd56175fc3fb4b3b48d33
  • actions-runner-win-arm64-2.329.0.zip 0fc7b3834eb41cc01882d088cdc0d8cba97109b2e859ddbe598fdc6e0c1c183e
  • actions-runner-osx-x64-2.329.0.tar.gz 9e101e3d2f1056f480cc42c9565125d207a6a4f6745a0275dd75356fdffd6e6f
  • actions-runner-osx-arm64-2.329.0.tar.gz d6868baf7f46f4afd860862d572ba505acd9a9dc927892d160df78c6ff79e54a
  • actions-runner-linux-x64-2.329.0.tar.gz 5699aee6a9d704211b9e4fabfa2aaa2997d25003df7f7b411a0a5a78436dadc3
  • actions-runner-linux-arm64-2.329.0.tar.gz 5706eecfc2fa03e5e6a34b43ae6252da3fbfede01811b0ed0fe22dfb6c7d0cf8
  • actions-runner-linux-arm-2.329.0.tar.gz 939b2be00410337f418e7139a8ecb3ddec813fcf1bd5d8b7c763ec396b2e0ce1

v2.328.0

20 Aug 08:26

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@v2.327.1...v2.328.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.328.0/actions-runner-win-x64-2.328.0.zip -OutFile actions-runner-win-x64-2.328.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.328.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.328.0/actions-runner-win-arm64-2.328.0.zip -OutFile actions-runner-win-arm64-2.328.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.328.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.328.0/actions-runner-osx-x64-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.328.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.328.0/actions-runner-osx-arm64-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.328.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.328.0/actions-runner-linux-x64-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.328.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.328.0/actions-runner-linux-arm64-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.328.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.328.0/actions-runner-linux-arm-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.328.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.328.0.zip ba26aacc792ae9482e37f669ab9168471bacbfefe634d00e9a8dc84316689ff4
  • actions-runner-win-arm64-2.328.0.zip b8c877f4e4bc2629cb66fb66df04a9d76d255f10cc725f8f125c3b14e9a56f39
  • actions-runner-osx-x64-2.328.0.tar.gz 542c03ef626729b6a35661bd6135fe96fb61778783bdf13af4fad71f311ecccf
  • actions-runner-osx-arm64-2.328.0.tar.gz b12cc4ee133d834c5edf02871fa073183fe5e50d0e9b7eb9575ec80af545b34b
  • actions-runner-linux-x64-2.328.0.tar.gz 6445ef0998e3bfa6867f8cd1bd55ab6b9641d46478a8a9ae8948d00633d7c504
  • actions-runner-linux-arm64-2.328.0.tar.gz f42299de8bf88070eb1dbeb9cd3b4a38154864193282dd07b58b9020dfad8ef0
  • actions-runner-linux-arm-2.328.0.tar.gz da3948a19cd5a1a8021f5552dac79ed2ecaa4b6a423af7e72010e708e31493ea

v2.327.0

23 Jul 19:32

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@v2.326.0...v2.327.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.327.0/actions-runner-win-x64-2.327.0.zip -OutFile actions-runner-win-x64-2.327.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.327.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.327.0/actions-runner-win-arm64-2.327.0.zip -OutFile actions-runner-win-arm64-2.327.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.327.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.327.0/actions-runner-osx-x64-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.327.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.327.0/actions-runner-osx-arm64-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.327.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.327.0/actions-runner-linux-x64-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.327.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.327.0/actions-runner-linux-arm64-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.327.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.327.0/actions-runner-linux-arm-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.327.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.327.0.zip 1e54fb483f645c111c7a505e645eb74738e06880e97b043b65bae2b4ff4e54c7
  • actions-runner-win-arm64-2.327.0.zip 6aed13ecb2b2bdbbca115bf99f5b514ac3e83feca87a13ffbda82f3a47dd4aff
  • actions-runner-osx-x64-2.327.0.tar.gz 231d829df45fd3c9ae0d47cd10f5ba271c0e7d364d6c94248325210c32e57984
  • actions-runner-osx-arm64-2.327.0.tar.gz 506c42c2af1e4da5f4b1f58119097a7f2a57a1c7a2d91bc33a169157f12b5f12
  • actions-runner-linux-x64-2.327.0.tar.gz ab1d9a34992576d3f5a875f63be25c66e71e1c5d728705e09a4f2db871264c46
  • actions-runner-linux-arm64-2.327.0.tar.gz b73a9f10d0e7d182f0dae7331a4e984cf1af36175a563aeb54f5ef589e547ca5
  • actions-runner-linux-arm-2.327.0.tar.gz cfe2f7293b26b2d53b427868e35fdf11a2adeec0b504218e06d99f7b38e877c1

v2.326.0

22 Jul 13:30

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@v2.325.0...v2.326.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.326.0/actions-runner-win-x64-2.326.0.zip -OutFile actions-runner-win-x64-2.326.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.326.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.326.0/actions-runner-win-arm64-2.326.0.zip -OutFile actions-runner-win-arm64-2.326.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.326.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.326.0/actions-runner-osx-x64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.326.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.326.0/actions-runner-osx-arm64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.326.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.326.0/actions-runner-linux-x64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.326.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.326.0/actions-runner-linux-arm64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.326.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.326.0/actions-runner-linux-arm-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.326.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.326.0.zip 03f52e6bc4aa0477b2c36d2a233b47630c782000a50b4a13829b5143b41d9355
  • actions-runner-win-arm64-2.326.0.zip 71221cd5399d4c1a361f1bcd329bb5c7937b655187e2ff1052537fcbd3c68651
  • actions-runner-osx-x64-2.326.0.tar.gz 0938b0358b8e744dc2be097898a81e64f2571e856cf5173dd75ce6562ecb0839
  • actions-runner-osx-arm64-2.326.0.tar.gz 37756f0c576641b170c70e1cf972453efee21725c21afd66409ca32865b450bf
  • actions-runner-linux-x64-2.326.0.tar.gz 28745a08d8a4e44253a6bf2bcadc7da4cc7704fe3ee985c26093619a80d9e246
  • actions-runner-linux-arm64-2.326.0.tar.gz ac5c04fa652f3b308158eabf333a294a308883daded31976747a33e751aa24dd
  • actions-runner-linux-arm-2.326.0.tar.gz 624b30b25ea5293f68099fcd3bf22a93af4b93cb31c0a68482e787fe1aabab12

v2.325.0

11 Jun 11:14

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

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

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

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

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

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