Releases: Gold-Bull/github-actions-runner
v3.314.1
What's Changed
- Refer to release to GitHub Actions Runner v2.314.1 for the full list of changes
New Contributors
- Refer to release to GitHub Actions Runner v2.314.1 for the full list of contributors
Full Changelog: v3.313.0...v3.314.1
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/Gold-Bull/github-actions-runner/releases/download/v3.314.1/actions-runner-win-x64-3.314.1.zip -OutFile actions-runner-win-x64-3.314.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-3.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/Gold-Bull/github-actions-runner/releases/download/v3.314.1/actions-runner-win-arm64-3.314.1.zip -OutFile actions-runner-win-arm64-3.314.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-3.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/Gold-Bull/github-actions-runner/releases/download/v3.314.1/actions-runner-osx-x64-3.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-3.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/Gold-Bull/github-actions-runner/releases/download/v3.314.1/actions-runner-osx-arm64-3.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-3.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/Gold-Bull/github-actions-runner/releases/download/v3.314.1/actions-runner-linux-x64-3.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-3.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/Gold-Bull/github-actions-runner/releases/download/v3.314.1/actions-runner-linux-arm64-3.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-3.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/Gold-Bull/github-actions-runner/releases/download/v3.314.1/actions-runner-linux-arm-3.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-3.314.1.tar.gz
[Experimental] Linux s390x
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/Gold-Bull/github-actions-runner/releases/download/v3.314.1/actions-runner-linux-s390x-3.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-s390x-3.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-3.314.1.zip 0b9e6ab13e6c6a413a9c48fb90817598ff2fa690af84fec7d87dd2919eebea97
- actions-runner-win-arm64-3.314.1.zip 220ffac5b9cde9dc7688791f76c216f5d18451bea48e2c9a23bb17642b5c8052
- actions-runner-osx-x64-3.314.1.tar.gz 22e4ab77a6d99bb1f25cbaa1b236f1673270748159960ca3f978192e8bac7512
- actions-runner-osx-arm64-3.314.1.tar.gz 606af0460dd16c73cd6bda5c3ee022c0610965a5d97e067ff2d73985b959c842
- actions-runner-linux-x64-3.314.1.tar.gz 7820a043bee5a966249b66df2f5333ffbddb70420502ead26fc62b0aa2a10bff
- actions-runner-linux-arm64-3.314.1.tar.gz 21add192042e4250f5f0efe7754747fbe29f7651431447276143032ff2a9bd14
- actions-runner-linux-arm-3.314.1.tar.gz 00a28597fb5efe18fcc91800049358251760d553e44235d6e9753725dd941709
- actions-runner-linux-s390x-3.314.1.tar.gz 3e1165b0adc99f1133fff10ee9c5e205736071a614744a1764c6e3c5f0330a7c
v3.313.0
What's Changed
- Bump docker and buildx to the latest version by @diogotorres97 in actions/runner#3100
- Revert "Bump container hook version to 0.5.0 in runner image (#3003)" by @TingluoHuang in actions/runner#3101
- Make embedded timeline record has same order as its parent record. by @TingluoHuang in actions/runner#3113
- Fix release workflow. by @TingluoHuang in actions/runner#3102
- Add user-agent to all http clients using RawClientHttpRequestSettings. by @TingluoHuang in actions/runner#3115
- Fix JobDispatcher crash during force cancellation. by @TingluoHuang in actions/runner#3118
- Implement Broker Redirects for Session and Messages by @luketomlinson in actions/runner#3103
- Only keep 1 older version runner around after self-upgrade. by @TingluoHuang in actions/runner#3122
- Upgrade
docker
from24.0.7
to24.0.8
by @MPV in actions/runner#3124 - Upload the diagnostic logs to the Results Service by @jtamsut in actions/runner#3114
- Upgrade
docker
from24.0.8
to24.0.9
by @MPV in actions/runner#3126 - Make sure to drain the upload queue before clean temp directory by @yacaovsnc in actions/runner#3125
- Specify
Content-Type
for BlockBlob upload by @bethanyj28 in actions/runner#3119 - Improve error report for invalid action.yml by @jsoref in actions/runner#3106
- Add sshd to .devcontainer.json by @pje in actions/runner#3079
- Resolve CVE-2024-21626 by @luka5 in actions/runner#3123
- Handle ForceTokenRefresh message by @luketomlinson in actions/runner#3133
- Bump hook version to 0.5.1 by @nikola-jokic in actions/runner#3129
New Contributors
- @diogotorres97 made their first contribution in actions/runner#3100
- @MPV made their first contribution in actions/runner#3124
- @jtamsut made their first contribution in actions/runner#3114
- @luka5 made their first contribution in actions/runner#3123
Full Changelog: actions/runner@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/Gold-Bull/github-actions-runner/releases/download/v3.313.0/actions-runner-win-x64-3.313.0.zip -OutFile actions-runner-win-x64-3.313.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-3.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/Gold-Bull/github-actions-runner/releases/download/v3.313.0/actions-runner-win-arm64-3.313.0.zip -OutFile actions-runner-win-arm64-3.313.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-3.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/Gold-Bull/github-actions-runner/releases/download/v3.313.0/actions-runner-osx-x64-3.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-3.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/Gold-Bull/github-actions-runner/releases/download/v3.313.0/actions-runner-osx-arm64-3.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-3.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/Gold-Bull/github-actions-runner/releases/download/v3.313.0/actions-runner-linux-x64-3.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-3.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/Gold-Bull/github-actions-runner/releases/download/v3.313.0/actions-runner-linux-arm64-3.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-3.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/Gold-Bull/github-actions-runner/releases/download/v3.313.0/actions-runner-linux-arm-3.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-3.313.0.tar.gz
[Experimental] Linux s390x
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/Gold-Bull/github-actions-runner/releases/download/v3.313.0/actions-runner-linux-s390x-3.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-s390x-3.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-3.313.0.zip abdf752247f5b51c372c2b63b546a667aeda2e2aba974bc7de1a9df2eff6d1bb
- actions-runner-win-arm64-3.313.0.zip 8cf850fca4e8f9b1f7f3e23a02685952a505a4c566b85b3ad48e0b9f07d49f65
- actions-runner-osx-x64-3.313.0.tar.gz 5611bcfbcc2440e6a16a995b64983a7d3cebd206f3813543a37af8d243de40fe
- actions-runner-osx-arm64-3.313.0.tar.gz 24e78c704a7577e726d2b8fa7bb70d1b44e3e62f4770aa92006af4b3e4286e13
- actions-runner-linux-x64-3.313.0.tar.gz c42400673ca796a25dad70471d43a18d47ff7e91f3892b6f232c399aa5a187bb
- actions-runner-linux-arm64-3.313.0.tar.gz a4163c2526ef0104adb6f2ee4df95ac901c654eeb34336b5b96d1bcbb4f0322e
- actions-runner-linux-arm-3.313.0.tar.gz 8b4aeb12627640b618256c8a0eccd8ba2fe058a3a7b4907f4f9064db226214e3
-
- actions-runner-linux-s390x-3.313.0.tar.gz b75cfbae1954f0ea629d4d04f5a0547095853a5961875cdb096647ef5309f9b8
v3.294.0
Features
- Added support for a JIT runner config (#1925)
- Added
ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION
env option to force actions to run on a specific node version (#1913) - Experimental: Self-hosted runner on Linux s390x Architecture
Bugs
- Fixed a bug where container hooks passed in path as a string rather then an array of strings (#1948)
Misc
- Minor cleanup of error messages when running container hooks (#1949)
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/Gold-Bull/github-actions-runner/releases/download/v3.294.0/actions-runner-win-x64-3.294.0.zip -OutFile actions-runner-win-x64-3.294.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-3.294.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/Gold-Bull/github-actions-runner/releases/download/v3.294.0/actions-runner-osx-x64-3.294.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-3.294.0.tar.gz
[Pre-release] OSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/Gold-Bull/github-actions-runner/releases/download/v3.294.0/actions-runner-osx-arm64-3.294.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-3.294.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/Gold-Bull/github-actions-runner/releases/download/v3.294.0/actions-runner-linux-x64-3.294.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-3.294.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/Gold-Bull/github-actions-runner/releases/download/v3.294.0/actions-runner-linux-arm64-3.294.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-3.294.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/Gold-Bull/github-actions-runner/releases/download/v3.294.0/actions-runner-linux-arm-3.294.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-3.294.0.tar.gz
[Experimental] Linux s390x
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/Gold-Bull/github-actions-runner/releases/download/v3.294.0/actions-runner-linux-s390x-3.294.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-s390x-3.294.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-3.294.0.zip 3d219cece0bf547da4c970017dccdf5b495c45dbe4f1a30741244099ce3dd05c
-
actions-runner-osx-x64-3.294.0.tar.gz 791c34efaf549579a76a1571d5902fd296bf321028e28f9a2b5bfc2a46a7619a
-
actions-runner-osx-arm64-3.294.0.tar.gz 211cb1042e837a0a92429cc39ceb1c63ae134cf7069a7a433a6c2b91a279fa18
-
actions-runner-linux-x64-3.294.0.tar.gz 8d9cc7ffcbf9dd8ad199edef3c4b288383f223af9cdfcd53bdb768cfa3b15793
-
actions-runner-linux-arm64-3.294.0.tar.gz 72ad2262a8ff4822a4b6ae1489f9e4621edce719127dd96dbcf58f46df5f4a48
-
actions-runner-linux-arm-3.294.0.tar.gz a69dc8d596c7cf2938a411fe2184c8d22d1c2ce57fe97d6e38288776848244a9
-
actions-runner-linux-s390x-3.294.0.tar.gz e3cea44a6f7ebae0a0db46cfbdee72a3df09c266aff08a2644a1bcb532306dd8
-
actions-runner-win-x64-3.294.0-noexternals.zip 4e669b59e657adeb46952e6bf4742976e162d290d37083b1b1115fe5620cc93c
-
actions-runner-osx-x64-3.294.0-noexternals.tar.gz e6d68f1e546c3991794c7f667007e3ac95179668ca5a959b26fdf23306278a8e
-
actions-runner-osx-arm64-3.294.0-noexternals.tar.gz 645a0396edbf01f12b7c4b3d95c3dcc6c0a81ff61b51a5428e549af702ba3c54
-
actions-runner-linux-x64-3.294.0-noexternals.tar.gz 784c33eb696cb8a9daff2bef0193f05458ba9af213f497f1359f740af7693b80
-
actions-runner-linux-arm64-3.294.0-noexternals.tar.gz 11aa53895bcebe5ef7382040097f222556e08238282e901f63fb9478c74e45a6
-
actions-runner-linux-arm-3.294.0-noexternals.tar.gz b785cd10f7c3f7b55ccddd1d12ad52dfc56e3940fb3721d3b45f2c6825518618
-
actions-runner-linux-s390x-3.294.0-noexternals.tar.gz aebcf6300dc8886c834ba48a51896e70cf91601e8ef78dd4758769730e67da5d
-
actions-runner-win-x64-3.294.0-noruntime.zip 4a043e2ff0134170f4b0548d70e997c1c7fe821431dc8d60e03fd02525592833
-
actions-runner-osx-x64-3.294.0-noruntime.tar.gz 5d6e392a7b6a343c63893301beee377555d6310e49fcf81eb3cd96dbec3b18ac
-
actions-runner-osx-arm64-3.294.0-noruntime.tar.gz 041fa4374885bf1b848e7e0b64f269634669d7142778b3c83aeae4c16d16965e
-
actions-runner-linux-x64-3.294.0-noruntime.tar.gz 87ad1f76b5c1748772570232633f66348ed99279016226c9fc5904332ccda59c
-
actions-runner-linux-arm64-3.294.0-noruntime.tar.gz 76510b1cde43dc04a6a915bc628adc9e39ae797324222ecd1cc5d09e8b40ab0a
-
actions-runner-linux-arm-3.294.0-noruntime.tar.gz 90a60d1a20d692bbe43614989240496049c4a7c5dca407d95f98f97a4803790e
-
actions-runner-linux-s390x-3.294.0-noruntime.tar.gz 2963e7a9aac5477765c7c03ff52e0514aeee39d5ee9fd50b0cd5ea258837c843
-
actions-runner-win-x64-3.294.0-noruntime-noexternals.zip 5b30f259eeb462700bad5f606b9882a7b876a4f786583ecc49efa3e5ff28a0d3
-
actions-runner-osx-x64-3.294.0-noruntime-noexternals.tar.gz 00de2b035c1149a1d2735920a70474bd0d7a8ef0ed911f7fd59f2a79ed3da5ad
-
actions-runner-osx-arm64-3.294.0-noruntime-noexternals.tar.gz d54523ad3450d43726ab8bfd3efe98296aaa545464590c303d9e83202740cc8d
-
actions-runner-linux-x64-3.294.0-noruntime-noexternals.tar.gz 063821c5fe95e560ea3562969a82280d53c4f1d09856c6b938f9341715bba3bc
-
actions-runner-linux-arm64-3.294.0-noruntime-noexternals.tar.gz 37be8f628591ba3adc3948878e8240daf16399b1f316f643ee5e0ddc074e6c20
-
actions-runner-linux-arm-3.294.0-noruntime-noexternals.tar.gz a8f4240494c170c6a47c487dc6ded6e3932c4ba117fca2f0b98efc2c2826ae0d
-
actions-runner-linux-s390x-3.294.0-noruntime-noexternals.tar.gz c9bb628f761ebb7097314b797b40b072419c3f89ad378206c723da58860f89c9
v3.293.5
Features
- Allow self-hosted runner admins to fail jobs that don't have a job container (#1895)
- Experimental: Self-hosted runner admins can now use scripts to customize the container invocation in the runner (#1853)
Bugs
- Fixed an issue where a Job Hook would fail to execute if the shell path contains a space on Windows (#1826)
Misc
- Handle new
HostedRunnerShutdownMessage
to shutdown hosted runners faster (#1922)
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/v3.293.5/actions-runner-win-x64-3.293.5.zip -OutFile actions-runner-win-x64-3.293.5.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-3.293.5.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/v3.293.5/actions-runner-osx-x64-3.293.5.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-3.293.5.tar.gz
[Pre-release] 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/v3.293.5/actions-runner-osx-arm64-3.293.5.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-3.293.5.tar.gz
Linux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v3.293.5/actions-runner-linux-x64-3.293.5.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-3.293.5.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/v3.293.5/actions-runner-linux-arm64-3.293.5.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-3.293.5.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/v3.293.5/actions-runner-linux-arm-3.293.5.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-3.293.5.tar.gz
[Experimental] Linux s390x
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v3.293.5/actions-runner-linux-s390x-3.293.5.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-s390x-3.293.5.tar.gz
Using your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
-
actions-runner-win-x64-3.293.5.zip 16ec2433cab08d77ccb3015d42dac0764982f50293556a4c256a31453aba544b
-
actions-runner-osx-x64-3.293.5.tar.gz 380afbe876ed4d72d92921fded7b9f4378044b78d7101412a2da7ab800027d22
-
actions-runner-osx-arm64-3.293.5.tar.gz 84b084753790461ea705e37cd6e5950ed9ed09754eda628eea892ddcb8cfedfe
-
actions-runner-linux-x64-3.293.5.tar.gz 4a1e89757b2fbc9e8813a736b0215995950abf0fb997718fee64f9d53646ba01
-
actions-runner-linux-arm64-3.293.5.tar.gz b93e5f3c8683dcfbb431b3509b9a3f84ef1be4d803db392f2444183ff7c6a653
-
actions-runner-linux-arm-3.293.5.tar.gz 5876142d94cbbcd9c726bc2c3b0fb12e57136ec70463114fde84cbc4d2e74ea6
-
actions-runner-linux-s390x-3.293.5.tar.gz fe6d71b89df3fbf699bd2a693db4512e79aa7a3aecebeb0dfa46d6bd8be8a080
-
actions-runner-win-x64-3.293.5-noexternals.zip 2010e0c2ad6877c5a57e8ea25845bc3ec6d20ffe2c70ce5b13fe74c313605728
-
actions-runner-osx-x64-3.293.5-noexternals.tar.gz 6290b8beb013a6adfe970d0edb1554341129d08e0746180c6809dd6ca795cbc6
-
actions-runner-osx-arm64-3.293.5-noexternals.tar.gz 3a549f729830b0b3b0879a80b38545551b930da3df3ea7604350da9edf01c4ce
-
actions-runner-linux-x64-3.293.5-noexternals.tar.gz f98202b71f6ab1501d93f2a3397b2fd0db857467d10909d527ed37e7f46eed8c
-
actions-runner-linux-arm64-3.293.5-noexternals.tar.gz f7d856e52cd387789f41e0f445f87d4d1eef2f7defd747d1f05e2f6c0d2cf081
-
actions-runner-linux-arm-3.293.5-noexternals.tar.gz 596b5e6a3caa5ea7b9c96f2888cbe077b1a382c0af0cb2b734d0d34134ec3072
-
actions-runner-linux-s390x-3.293.5-noexternals.tar.gz a17ceab4637d92cfe76fc378b877e2abcc81e637eb19d3faa92d470132bb67aa
-
actions-runner-win-x64-3.293.5-noruntime.zip 9ab8d0d21ddbb739631fc970ea0f90328f07bac67bec583fdf0bdd577d3c81d6
-
actions-runner-osx-x64-3.293.5-noruntime.tar.gz 23e4c6eebb4f43382120b4ac9334041b752725e6a67fe18834c4ec0e216634d7
-
actions-runner-osx-arm64-3.293.5-noruntime.tar.gz e98b312ab71276a87bd40f70b0af334e131f358520df4edf41d6c2101199595d
-
actions-runner-linux-x64-3.293.5-noruntime.tar.gz d74a06444ef3fbf0340e546ce27ba40b67ef11a5f766c82392c41353d2648595
-
actions-runner-linux-arm64-3.293.5-noruntime.tar.gz f27882dd6c07a0cba93eca2dd6ba55abf95c0976bdd373a56d65e2427751d94b
-
actions-runner-linux-arm-3.293.5-noruntime.tar.gz deed222d842775ec5e44c20ef232c3901674c23d756fb4b8084b6e95f747ad01
-
actions-runner-linux-s390x-3.293.5-noruntime.tar.gz 22b42537f97f70be54837d163e7cc7b8dfc360a29124509583f817fb24b0ff40
-
actions-runner-win-x64-3.293.5-noruntime-noexternals.zip cde7b6b2bee5fbd61dc4864f27e3a4dfba47a0bb82689137bab87aa878b0df4f
-
actions-runner-osx-x64-3.293.5-noruntime-noexternals.tar.gz 557da80a457a72b3dd1ea14f4f2eb6c28313625820a5c8afdef5714c288b9e08
-
actions-runner-osx-arm64-3.293.5-noruntime-noexternals.tar.gz 60abb554894b551d7692b7729039bebfd759180e7d1a84d20d477dd52b5b8494
-
actions-runner-linux-x64-3.293.5-noruntime-noexternals.tar.gz 9ba0ee392a9635a49e11570f855e3e1516579da865304121ff28cb26b7d60e36
-
actions-runner-linux-arm64-3.293.5-noruntime-noexternals.tar.gz 96dec45015075225221817406c0d7af9674606a038fb3ea88d77c68303d25c9d
-
actions-runner-linux-arm-3.293.5-noruntime-noexternals.tar.gz 3bc4ba52eb8f3ab6608f10bc61f3480e4fd5e56d31264bd93438cb646b6ea4a2
-
actions-runner-linux-s390x-3.293.5-noruntime-noexternals.tar.gz 6c788429a394916f5237842e2dcb85af0eb3486e8c0944abe48576e7d130cff1