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/v2.293.0/actions-runner-win-x64-2.293.0.zip -OutFile actions-runner-win-x64-2.293.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.293.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.293.0/actions-runner-osx-x64-2.293.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.293.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/actions/runner/releases/download/v2.293.0/actions-runner-osx-arm64-2.293.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.293.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.293.0/actions-runner-linux-x64-2.293.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.293.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.293.0/actions-runner-linux-arm64-2.293.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.293.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.293.0/actions-runner-linux-arm-2.293.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.293.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.293.0.zip ae421f582b08cd7f8521c46991fc80685b643402fe3822eae2da23430819fb8b
-
actions-runner-osx-x64-2.293.0.tar.gz 4bf6ec7f3b26ef641a58d77f19cf4b3f79bcd6d988c59d020ae96ae8be6ec787
-
actions-runner-osx-arm64-2.293.0.tar.gz 0198acfc65448b44e3f9c13def03e47f202291ea4ffb1b7c8c88f3cd14a3198a
-
actions-runner-linux-x64-2.293.0.tar.gz 06d62d551b686239a47d73e99a557d87e0e4fa62bdddcf1d74d4e6b2521f8c10
-
actions-runner-linux-arm64-2.293.0.tar.gz 003fde87923900ae85d3a28f8b364936725bbd0f7eb9afeb73c40f3e117cc9c9
-
actions-runner-linux-arm-2.293.0.tar.gz 7910c0cb6a908735d1a1bf2849dcae8516848aa3f6d408ed9c35a95ca4d5266b
-
actions-runner-win-x64-2.293.0-noexternals.zip f12193a1ff080dc18e411fe4e9d0a075c2fc2aa1b9158f6c17df49e077073a43
-
actions-runner-osx-x64-2.293.0-noexternals.tar.gz aab417104901f447efa9831691e69a8656728c0c8719ac993a94657a7aca1e2b
-
actions-runner-osx-arm64-2.293.0-noexternals.tar.gz acf87045aea866cc22245fe3d23e1e0c62375dd48b33ea29b37a9861824a90af
-
actions-runner-linux-x64-2.293.0-noexternals.tar.gz d0d17ceb37155731ab3703731d1a24773bee5073a979f370f53145d8c8a39b36
-
actions-runner-linux-arm64-2.293.0-noexternals.tar.gz 8f6efc21cb965ba5b5a76ab5d5f3023e653b4e8cca3d1dbcb328c54c42c93497
-
actions-runner-linux-arm-2.293.0-noexternals.tar.gz a4e020af409eeba5c2134ceab012e5f21543b416b30449c21ba25a3dad0b99f9
-
actions-runner-win-x64-2.293.0-noruntime.zip eb6fb9a3b5bf8616688ef5873a32ab41fc867ded5642ccf7a3fc6f85a0db7559
-
actions-runner-osx-x64-2.293.0-noruntime.tar.gz 4cad2af211c0fe6a539714510cee0f8743df47a4980a9af5c9aec2f369f59b33
-
actions-runner-osx-arm64-2.293.0-noruntime.tar.gz ae2e64ee8616274534749a638d38a7a54dfc80aaeb19f3cd76246d403407478f
-
actions-runner-linux-x64-2.293.0-noruntime.tar.gz 4c96514f024ddbecf054b1d3deb7962f38272b564f6c88008eb82f1b50baeb02
-
actions-runner-linux-arm64-2.293.0-noruntime.tar.gz 973385a40cd6f0fc7adbec429924387e02ea0e606ff3218e0584981287042386
-
actions-runner-linux-arm-2.293.0-noruntime.tar.gz 6fce751b95c7b661f6b19c778a76f7959935072d87b3c7b78e9e8519a921e62b
-
actions-runner-win-x64-2.293.0-noruntime-noexternals.zip 48ba9b307b0f18d7be21cc0a2c6001d70575bccd1ce4acdb964ff01b4ed9cddc
-
actions-runner-osx-x64-2.293.0-noruntime-noexternals.tar.gz 2c65b1474b152dd8087fcebb77ebb524c66217c75897ad4fec346c38015d88b0
-
actions-runner-osx-arm64-2.293.0-noruntime-noexternals.tar.gz 9c82abebad461c85995caea2d9fd7f58d9a49e6accc0dfcd487c88932af3667a
-
actions-runner-linux-x64-2.293.0-noruntime-noexternals.tar.gz 4e534dd929eba39696ddf1cc259bf69400a19351021e127966da827f47e87dc6
-
actions-runner-linux-arm64-2.293.0-noruntime-noexternals.tar.gz 05f4f4ca0fc021ecc5cce9e6f973ee10d4469131b922f9d8f5e4952e05ec2ef9
-
actions-runner-linux-arm-2.293.0-noruntime-noexternals.tar.gz de554a0fcfe1722c371c5490b450e2dc0fbf3ab2f94730451b3faf12715a2c5b