Releases: actions/runner
v2.289.3
Features
Bugs
- Fixed an issue where websockets failed to successfully close when posting log lines (#1790)
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.289.3/actions-runner-win-x64-2.289.3.zip -OutFile actions-runner-win-x64-2.289.3.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.289.3.zip", "$PWD")
OSX
# 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.289.3/actions-runner-osx-x64-2.289.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.289.3.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.289.3/actions-runner-linux-x64-2.289.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.289.3.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.289.3/actions-runner-linux-arm64-2.289.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.289.3.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.289.3/actions-runner-linux-arm-2.289.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.289.3.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.289.3.zip ee331b260140b74862a81dbc70bae1839a1e39b823ca429619072430fd5f63a3
-
actions-runner-osx-x64-2.289.3.tar.gz c22ca2f20f2f95abba919bd377f8378361cf7ff41f0d73c485d423db0c418d50
-
actions-runner-linux-x64-2.289.3.tar.gz bdb4d906f2c49e9cce302172f885f75516943e58e015c1f7997d3a8e286321d3
-
actions-runner-linux-arm64-2.289.3.tar.gz 7e712658f73caf3ccea4950b9ac5b370cfb1cce645b26aff972f08a095282972
-
actions-runner-linux-arm-2.289.3.tar.gz 5cce567e4f1d9f140dff68c634bdc768d976a79410fa05c0ff7c908c1dfd9955
-
actions-runner-win-x64-2.289.3-noexternals.zip 65ad7dee956cf2d9deb3192a740f6209fbe4d5766c235b74c686997839a41cef
-
actions-runner-osx-x64-2.289.3-noexternals.tar.gz 790a98c2fe256f5b8385d310cc71136cc8dbf867d7fa30040528505e784ce6b8
-
actions-runner-linux-x64-2.289.3-noexternals.tar.gz 1b187674cefe9b4f14cee97db5bfef1d50ec6ee0a971091e0fe8fbad59db37c0
-
actions-runner-linux-arm64-2.289.3-noexternals.tar.gz 423e3c910a5b8b357d84c77a5b826b70f4909da1f8d854eb49d0ba3806ff5bcc
-
actions-runner-linux-arm-2.289.3-noexternals.tar.gz f6fff5abb9a4277d13127bd9d4760deced56f80411d62d992da860dde3ad6d21
-
actions-runner-win-x64-2.289.3-noruntime.zip 13ee6c622d77c4f55fe42131de9f60ad9ae29a408625c02e64c3cd9f7eb5108d
-
actions-runner-osx-x64-2.289.3-noruntime.tar.gz 3081cd416fb15156cde9ce37360e3a037bbe8f21782b8cd79d10949980f2231c
-
actions-runner-linux-x64-2.289.3-noruntime.tar.gz 299c77b10017fe7aedf23e83a2dc1cd4b77254e19bf88c8bf79eaa6ad68aaada
-
actions-runner-linux-arm64-2.289.3-noruntime.tar.gz c1f61106686c944d6c910e25fc8334fb6b49faabdfe8bba30373f629ebc9f3bc
-
actions-runner-linux-arm-2.289.3-noruntime.tar.gz 0044877edb44577bf287b7712ae8c1f3438f42023318ffb2407f4a4149c76a15
-
actions-runner-win-x64-2.289.3-noruntime-noexternals.zip 14813adf5e08c9f5f2ae25ab6b868eb9452fcc3efc1ad6b26d00f1a2245c5e99
-
actions-runner-osx-x64-2.289.3-noruntime-noexternals.tar.gz 83616f68664a2929d4447053c08227ddc5e169289a2560b35652a7642d78f5b7
-
actions-runner-linux-x64-2.289.3-noruntime-noexternals.tar.gz 4894c993f8bdb105fa841eade658175f066075ee3f143235852141654748a35d
-
actions-runner-linux-arm64-2.289.3-noruntime-noexternals.tar.gz b5ab49e8b7d623250b731202631976d02ae49393bb668d89b1179248bf38a5f7
-
actions-runner-linux-arm-2.289.3-noruntime-noexternals.tar.gz 73ec1f6da2079cb701b1c80c4201164af78f9468cb92110440563827e066ed13
v2.290.1
Features
- Continue-on-error is now possible for the composite action steps (#1763)
- Now it's possible to use context evaluation in the
shell
of composite action run steps (#1767)
Bugs
- Fix a bug where job would be marked as 'cancelled' after self-hosted runner going offline (#1792)
- Translate paths in
github
andrunner
contexts when running on a container (#1762) - Warn about invalid flags when configuring or running the runner (#1781)
- Fix a bug where job hooks would use job level working directory (#1809)
Misc
- Allow warnings about actions using Node v12 (#1735)
- Better exception handling when runner is configured with invalid Url or token (#1741)
- Set user agent for websocket requests (#1791)
- Gracefully handle websocket failures (#1789)
- Capture telemetry when git errors on unsafe repository. (#1823)
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.290.1/actions-runner-win-x64-2.290.1.zip -OutFile actions-runner-win-x64-2.290.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.290.1.zip", "$PWD")
OSX
# 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.290.1/actions-runner-osx-x64-2.290.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.290.1.tar.gz
Linux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.290.1/actions-runner-linux-x64-2.290.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.290.1.tar.gz
Linux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.290.1/actions-runner-linux-arm64-2.290.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.290.1.tar.gz
Linux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.290.1/actions-runner-linux-arm-2.290.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.290.1.tar.gz
Using your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
-
actions-runner-win-x64-2.290.1.zip 67de8c2e91b9949031748f976c9a1d071b0f135c8ddc03f06c9b63d68ad949ec
-
actions-runner-osx-x64-2.290.1.tar.gz 86b4aa8a4aa889719c2d202443519c71bfdf5302dabb97a38ec95456506a99dc
-
actions-runner-linux-x64-2.290.1.tar.gz 2b97bd3f4639a5df6223d7ce728a611a4cbddea9622c1837967c83c86ebb2baa
-
actions-runner-linux-arm64-2.290.1.tar.gz 640596ec55df33efe1fff086e1379c1108cba6656791807708cdb664de51fb01
-
actions-runner-linux-arm-2.290.1.tar.gz 14a59f69eec7ea70dd14e9236c0f37ca677d8661b788718025d3baf2d64214e8
-
actions-runner-win-x64-2.290.1-noexternals.zip 75a447196f531540f05f9a573f7a7f0c70e170e96e32911099cd14a43ded59e4
-
actions-runner-osx-x64-2.290.1-noexternals.tar.gz 7dfba495b5a4dd42dca491d543dd4a3b60efe3e51503b8fd9a271b5823902eed
-
actions-runner-linux-x64-2.290.1-noexternals.tar.gz 90d8ff12f1c502c67a7b772f306b95f7da91f63ef44e590696b97bdcb55a9e80
-
actions-runner-linux-arm64-2.290.1-noexternals.tar.gz 6cabdc2fbfdc0ff7d8853d23111c139294ed636284434d4d3be866362db5eb7f
-
actions-runner-linux-arm-2.290.1-noexternals.tar.gz dd2297817c6d8467e2455efd78dff9b24f66e2945029c5143b1e09bcb2de0e50
-
actions-runner-win-x64-2.290.1-noruntime.zip 06c46c7d8da01fc95c65e48c45e95c09401a067ec0d65aae3cb83b6f7f350c7f
-
actions-runner-osx-x64-2.290.1-noruntime.tar.gz f8a34b9209b25f08b54ca81ff7d4c3a9321f685ff37b5add244f2a9c37c56eb8
-
actions-runner-linux-x64-2.290.1-noruntime.tar.gz 29f53119071946131fc35cc591fa7cdc9cc8778fd294156b97270d583d09862a
-
actions-runner-linux-arm64-2.290.1-noruntime.tar.gz 983890e87df224501205575515ddf3aa4bfd37a3d1628fc9847d349d9dd07aa1
-
actions-runner-linux-arm-2.290.1-noruntime.tar.gz f4853393966c29700c3d720133aa04e170ca4e8f6c46fb4d37e4f2448a3c4903
-
actions-runner-win-x64-2.290.1-noruntime-noexternals.zip ffd28e6997b88413d1deabca91640d70a0109a1fa23db86a9484621e9d9e73e9
-
actions-runner-osx-x64-2.290.1-noruntime-noexternals.tar.gz e84d77eaa65a05be9d2ae3823a074475ab405dd8bfefd7b9d66765e310a82314
-
actions-runner-linux-x64-2.290.1-noruntime-noexternals.tar.gz 97399c20fa1f0d485bc0f6eb5c899ad14ab77790fc61ca09bfddc23d071482c9
-
actions-runner-linux-arm64-2.290.1-noruntime-noexternals.tar.gz 71540f6a9ff92b5de8fc4d623ca4ce116d9aca15ef50ffa131242fe684e17266
-
actions-runner-linux-arm-2.290.1-noruntime-noexternals.tar.gz 1d11fd2ef68612a9b42e09ed0ef2aa9ddb0ff7e89fa7c8f3655433231ab40619
v2.290.0
Features
- Continue-on-error is now possible for the composite action steps (#1763)
- Now it's possible to use context evaluation in the
shell
of composite action run steps (#1767)
Bugs
- Fix a bug where job would be marked as 'cancelled' after self-hosted runner going offline (#1792)
- Translate paths in
github
andrunner
contexts when running on a container (#1762) - Warn about invalid flags when configuring or running the runner (#1781)
- Fix a bug where job hooks would use job level working directory (#1809)
Misc
- Allow warnings about actions using Node v12 (#1735)
- Better exception handling when runner is configured with invalid Url or token (#1741)
- Set user agent for websocket requests (#1791)
- Gracefully handle websocket failures (#1789)
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.290.0/actions-runner-win-x64-2.290.0.zip -OutFile actions-runner-win-x64-2.290.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.290.0.zip", "$PWD")
OSX
# 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.290.0/actions-runner-osx-x64-2.290.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.290.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.290.0/actions-runner-linux-x64-2.290.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.290.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.290.0/actions-runner-linux-arm64-2.290.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.290.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.290.0/actions-runner-linux-arm-2.290.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.290.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.290.0.zip 503faa06ef9c8bac447c405aa41f72ecd8ecc739fb9c1b87be032d8a1286edf2
-
actions-runner-osx-x64-2.290.0.tar.gz a3407268448c33386273ca242428dbf82ea60238a2f0219ed1dee0bd52a08697
-
actions-runner-linux-x64-2.290.0.tar.gz eb06fb098fc32570383669ae28f63c9ca4094d6cef3a96dd30c3f6ab7d5ecead
-
actions-runner-linux-arm64-2.290.0.tar.gz e002d4e1a1fc547e3598943759c1aae281dca2852d45883329402f96d60862c7
-
actions-runner-linux-arm-2.290.0.tar.gz d10ada086c75684c32fbcb39a369237b16fbeb2fdb6fb21455dd34035ac891a0
-
actions-runner-win-x64-2.290.0-noexternals.zip 6150ae8e71c5862a4e33c982773a66e272c42b67796bf3dc7e3e44c00497d0c1
-
actions-runner-osx-x64-2.290.0-noexternals.tar.gz bc33a11b47f49e1d3fea2de083a52121708e17e76cfe35533eca288cb4438bbc
-
actions-runner-linux-x64-2.290.0-noexternals.tar.gz 54740e60e7b72f25be69ea087c80154ec325467837b3a6c6da801f83de73503c
-
actions-runner-linux-arm64-2.290.0-noexternals.tar.gz 3ae7ddb661160032ee7adcd984d8333eda16dd9493032430014a8aa19ca9a6cc
-
actions-runner-linux-arm-2.290.0-noexternals.tar.gz 56e72ffa335caf03fcdaef2f687c91c88a28ecd0a8983ecca535dd8b153966de
-
actions-runner-win-x64-2.290.0-noruntime.zip cadc448281cb7405fff4e0a835e2f68046c8e43d9336155dc6df21ef862faf48
-
actions-runner-osx-x64-2.290.0-noruntime.tar.gz e1f97422a2a0e7bcb8ffc816690bf28dc40586afe6df3c26edb9da610c47ed32
-
actions-runner-linux-x64-2.290.0-noruntime.tar.gz 28c66d5c57e3c85f33037857ba5e8e61504f3f80d022d6c742767bd408445299
-
actions-runner-linux-arm64-2.290.0-noruntime.tar.gz bb3e44b6683382f4f7e403305d43e1a3f97ef06d34c6f999764fd87507c7387e
-
actions-runner-linux-arm-2.290.0-noruntime.tar.gz 174437fbb1402e22b24ec451cff788ada2ba232692e788430fd3ff3f54394b65
-
actions-runner-win-x64-2.290.0-noruntime-noexternals.zip 217957bd5a9519b739229b223cfe00ab7fa1eaa9d88d67d52ebbe250d38933ed
-
actions-runner-osx-x64-2.290.0-noruntime-noexternals.tar.gz 942c81a75c1841fa0e19f2b92743e94a35852ee9d696fab261cd0f05c6a70678
-
actions-runner-linux-x64-2.290.0-noruntime-noexternals.tar.gz 56c64f6f10589b002ec3be50b46df44181889baa19c0132f02414ee0a9b594c9
-
actions-runner-linux-arm64-2.290.0-noruntime-noexternals.tar.gz 1f9a060579d54eb407bbaff68bca03847c795b49efec8fa77c418b0415f130c3
-
actions-runner-linux-arm-2.290.0-noruntime-noexternals.tar.gz a2557190dcd310118bd2673ead098b6a0831e638c1cb47407cb361ab97e0fe18
v2.289.2
Features
Bugs
- Fixed an issue where websockets failed to successfully close when posting log lines (#1790)
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.289.2/actions-runner-win-x64-2.289.2.zip -OutFile actions-runner-win-x64-2.289.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.289.2.zip", "$PWD")
OSX
# 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.289.2/actions-runner-osx-x64-2.289.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.289.2.tar.gz
Linux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.289.2/actions-runner-linux-x64-2.289.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.289.2.tar.gz
Linux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.289.2/actions-runner-linux-arm64-2.289.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.289.2.tar.gz
Linux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.289.2/actions-runner-linux-arm-2.289.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.289.2.tar.gz
Using your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
-
actions-runner-win-x64-2.289.2.zip 942723f875837fb167d7b3c772ea77163e42da7c0657a763461ecdb5b8987177
-
actions-runner-osx-x64-2.289.2.tar.gz 291d0986c4f84172bfbaf3c75c861e427bfc48403c6a54b384e356f451af767b
-
actions-runner-linux-x64-2.289.2.tar.gz 7ba89bb75397896a76e98197633c087a9499d4c1db7603f21910e135b0d0a238
-
actions-runner-linux-arm64-2.289.2.tar.gz 22581dada58a3e7ec2fd8eec98096790df4269615540fae4df3bbb7080de7f62
-
actions-runner-linux-arm-2.289.2.tar.gz e0b64b342f0c2825c595559d63cb29dc473eed648d194f052ed85e5a2ee7af56
-
actions-runner-win-x64-2.289.2-noexternals.zip 8d53a73df6af3fe79c06df95a22bd27274c230810fa1a43ddf5763ffed0c439b
-
actions-runner-osx-x64-2.289.2-noexternals.tar.gz 82a3e96ae0f2aa4b1829fdd123301d9e8a7e3f4063c9296fafb14a6963ba5325
-
actions-runner-linux-x64-2.289.2-noexternals.tar.gz 87e74c5710308db25c8f5e1bf9e3867c6abfe3f93151b13bf23ea3065597b475
-
actions-runner-linux-arm64-2.289.2-noexternals.tar.gz 22cc226f367302ff12b82e47f3334e9416a40fea982ec0ea867b826ea6fcfe55
-
actions-runner-linux-arm-2.289.2-noexternals.tar.gz c272fbac2b45277a246e50c823b37bcc7c7bb0f6983cead15c2df2c9be3f00c0
-
actions-runner-win-x64-2.289.2-noruntime.zip 887992c9a8759ced5286bb6a91269bd8430dbb06ec1766ed3dd27ed871e302f3
-
actions-runner-osx-x64-2.289.2-noruntime.tar.gz 4f1f0d0390dd0251143151db22aa87fb1b6c04495be53014f5c88821c1ff126b
-
actions-runner-linux-x64-2.289.2-noruntime.tar.gz 8b2f4e1eda17868fc888e53d210257d8d50eca288afba6d1e55358aa95e4be8a
-
actions-runner-linux-arm64-2.289.2-noruntime.tar.gz 7559379d5f337b277049437efc9a4f8935a51e8c0156ca8eeb58e9cccb0b2ee0
-
actions-runner-linux-arm-2.289.2-noruntime.tar.gz d01bf9267f7df7c0495b2f5db9c1f8598e8bf44740a1417147282cb6c493e637
-
actions-runner-win-x64-2.289.2-noruntime-noexternals.zip 58addd85a4cf0190fb5b283f79f746611448e2b5369382615d8206e82e51a477
-
actions-runner-osx-x64-2.289.2-noruntime-noexternals.tar.gz a10d24361dd2649d600f2fdb95353497d4105dbf3276730e72edaf81bf056f7a
-
actions-runner-linux-x64-2.289.2-noruntime-noexternals.tar.gz 276ffee84e611b8eefed4aa51a872a871c9a7be438131e1c0f58f666d09a0350
-
actions-runner-linux-arm64-2.289.2-noruntime-noexternals.tar.gz 83fddb36caf05cbcf48c763c2950c7a9463ae980aba125ab4167b631b5dabc4e
-
actions-runner-linux-arm-2.289.2-noruntime-noexternals.tar.gz 169a1e7e4092a4d29d57d998244aeee589158bf1ad67b096d8931c5f92b2e275
v2.289.1
Features
Bugs
- Fixed a crash on runner startup (#1770)
Misc
- Clarified the type of step running when running job started or completed hooks (#1769)
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.289.1/actions-runner-win-x64-2.289.1.zip -OutFile actions-runner-win-x64-2.289.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.289.1.zip", "$PWD")
OSX
# 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.289.1/actions-runner-osx-x64-2.289.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.289.1.tar.gz
Linux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.289.1/actions-runner-linux-x64-2.289.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.289.1.tar.gz
Linux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.289.1/actions-runner-linux-arm64-2.289.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.289.1.tar.gz
Linux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.289.1/actions-runner-linux-arm-2.289.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.289.1.tar.gz
Using your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
-
actions-runner-win-x64-2.289.1.zip 5ae4f5890c5c7bdc447d67f4579f72de51f799d3fbbb900cbcc37b37503b0967
-
actions-runner-osx-x64-2.289.1.tar.gz 53e7457cc15e401c91ea685f8f0ea1eacc8efb2340633e27637603bb6a3d0ccd
-
actions-runner-linux-x64-2.289.1.tar.gz d75a2b35c47df410bba1ede6196fc62b6063164f5d109bda1693641bba87a65f
-
actions-runner-linux-arm64-2.289.1.tar.gz 28e09a31fe35863ef63507494642310eb7cbb9f2ae8c327cfce6962045a106f0
-
actions-runner-linux-arm-2.289.1.tar.gz 95d40261a858986459f7e45da361480ae1545b821162a46a0e4753a0deddf50d
-
actions-runner-win-x64-2.289.1-noexternals.zip b66e12b983e219b5e61e2aaf8ed3c898c333098dd7677a700f50e41a4c73c7f3
-
actions-runner-osx-x64-2.289.1-noexternals.tar.gz 632e5628dd55a9ebf5e62fcfb6aa02ca3250ad6d4e72b2d1727e94ed70826a9d
-
actions-runner-linux-x64-2.289.1-noexternals.tar.gz 8afdc8fea4b8cb72ffe3ccb8b245968f451f46757921b7cb1d2a7ba36d0f4c31
-
actions-runner-linux-arm64-2.289.1-noexternals.tar.gz b5d3b39bc1a1310d4e714b5d9c928ef26f1cf4e12d698d82b0e4b271a7f4d4eb
-
actions-runner-linux-arm-2.289.1-noexternals.tar.gz 13cde3c90b9cea170beb89976adac98585c8b7d97918b803098516e8961fdb48
-
actions-runner-win-x64-2.289.1-noruntime.zip 10c60c7325b1372a31d15a9511eae4acbc9134896ec763702972b4205e8b7646
-
actions-runner-osx-x64-2.289.1-noruntime.tar.gz 27cab9fe0c916edbd9e1f4178c66e42d9a9a0cacaae489f930860569c2df6e2f
-
actions-runner-linux-x64-2.289.1-noruntime.tar.gz fedba9e272a7a3cc1af03674cd85f8de92f23fa9a9859bd2a2a9dfef6c96a804
-
actions-runner-linux-arm64-2.289.1-noruntime.tar.gz 30d844173fb7fdbe359d482e27cd8cde2596399203a817db956d7501b42d68b0
-
actions-runner-linux-arm-2.289.1-noruntime.tar.gz 8ad71dc24bfe531365cfbdd2f4b9340236c1497f08c30348471f5dae0bcb3811
-
actions-runner-win-x64-2.289.1-noruntime-noexternals.zip 78b9f36252b7101360549d1c2bc2b19a617c2c7f25e0a7601519daf3e8e6c54b
-
actions-runner-osx-x64-2.289.1-noruntime-noexternals.tar.gz 7d21828ffcb0f2b179a9cebf84dfa1b818b5638a325d5448f9ccf209960b308a
-
actions-runner-linux-x64-2.289.1-noruntime-noexternals.tar.gz 794c72945fcd934b27f3653b0bcccead7a7c7bb0feeb30581127a4b209cdee7e
-
actions-runner-linux-arm64-2.289.1-noruntime-noexternals.tar.gz 292c9174991c4c30c037447f323383af5285ef34db6c55563310a3a44fc6dac4
-
actions-runner-linux-arm-2.289.1-noruntime-noexternals.tar.gz 87c396b7ce156d28850543cfa20bd1c6b1f8d294ad5c5ba675ee8c2f11920d9e
v2.289.0
Features
- Added
github.triggering_actor
to thegithub
context (#1726) - Save step information when creating annotations (#1744)
- Improved performance of live log streaming (#1730, #1755)
- Added Beta support for job started and completed hooks (#1737)
Bugs
Misc
- Made some minor job telemetry improvements (#1747)
- Added repository name and workflow file name to
run.sh
output (#1761)
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.289.0/actions-runner-win-x64-2.289.0.zip -OutFile actions-runner-win-x64-2.289.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.289.0.zip", "$PWD")
OSX
# 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.289.0/actions-runner-osx-x64-2.289.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.289.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.289.0/actions-runner-linux-x64-2.289.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.289.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.289.0/actions-runner-linux-arm64-2.289.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.289.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.289.0/actions-runner-linux-arm-2.289.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.289.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.289.0.zip 85fb5e6a97cc98b1653a975cbca0234282724b5cd8cca5be86669ff574f367dd
-
actions-runner-osx-x64-2.289.0.tar.gz 8442dcad0e3b08235b6eb76395da4a97545ff47f76a0f06b6f8da0780c482d24
-
actions-runner-linux-x64-2.289.0.tar.gz d73e5d1d3d53be103970f2d775b5c355f0193f9989556dba27508cae2a7119c3
-
actions-runner-linux-arm64-2.289.0.tar.gz c4cb42877a86d344bb114a00fbb41f4e4ac1c7f7bd00150de0562c06689dbe30
-
actions-runner-linux-arm-2.289.0.tar.gz b4807c1330b620ea84e9316d5e03c8654340406e23e9da4aef615b0005ed421a
-
actions-runner-win-x64-2.289.0-noexternals.zip 987598e936af71185a7e48517211d77bed71c56d65d7e84c3a60cc2b8d8b1484
-
actions-runner-osx-x64-2.289.0-noexternals.tar.gz 2d1577f8a55e13b72ca0200f38cadfacf3804c0b678db3e2f46c6f9e145b6bba
-
actions-runner-linux-x64-2.289.0-noexternals.tar.gz 99b69ac438580309ae9e38820b3b29e0a42b490cbbb989b320b1a2cea28867be
-
actions-runner-linux-arm64-2.289.0-noexternals.tar.gz 136f247ac5a405a60743d67e6bd866267344bdc26e7120d6f65cf8a15b796c1a
-
actions-runner-linux-arm-2.289.0-noexternals.tar.gz 0aa8c5a1cac929fae7d9b73f2386a70cced3a1672dcec124d6a0be13c7fb3f9a
-
actions-runner-win-x64-2.289.0-noruntime.zip d0deb4a3f46b4da36d3e7294f26ff74fd04fa1ce961f82a4bc6fa3b5f5f5eb9f
-
actions-runner-osx-x64-2.289.0-noruntime.tar.gz c39f2b52c175f3c72046e05d0ca1acae0415b26daf2e41481379c96adedfa52e
-
actions-runner-linux-x64-2.289.0-noruntime.tar.gz 971f30db9ab88390050243689d0ae66e9acf1cc2844ad567432bc3b82d4e5012
-
actions-runner-linux-arm64-2.289.0-noruntime.tar.gz 644fecb832635eedeab001b830f11b719a4bb124cdc94114763ab22393f73521
-
actions-runner-linux-arm-2.289.0-noruntime.tar.gz 5e8687792b9c2ca33bd025656cfa484c9988e4736936db74dea8c0adce7ab2fc
-
actions-runner-win-x64-2.289.0-noruntime-noexternals.zip d2f4b9c73cb1e407d3223e35702d54390784a0fa2b44c750b8616eaac7a09b33
-
actions-runner-osx-x64-2.289.0-noruntime-noexternals.tar.gz 9cc3100b37c6d067637dfe8fc779a8296f277e2992122c5bde9b7d9876bc813b
-
actions-runner-linux-x64-2.289.0-noruntime-noexternals.tar.gz a422055bb4d0ff2806fe8886f0040ec64c837f0d07ff0b9a02a4e5d42944bff5
-
actions-runner-linux-arm64-2.289.0-noruntime-noexternals.tar.gz 02d040b685959827bc151bca897f6789e350d9b60be2f467b90460447073e108
-
actions-runner-linux-arm-2.289.0-noruntime-noexternals.tar.gz e8d34d2139ea8531da1ff97d642661f063eafcd9ec78ca58ad221bcfbe6c1c5f
v2.288.1
Features
- Make run.sh|cmd handle update without quitting so containers using them as entrypoints don't exit on update (#1646, #1633, #1708)
- Add support for Step Summary (#1642, #1667, #1712)
- Pass jobId to the actionsDownloadInfo controller (#1639)
- updated systemd svc.sh to accept custom service file (#1612)
- Add ability to specify runner group when creating service (#1675)
- Prefer node16 over node12 when running internal scripts (#1621)
- Sending telemetry about actions usage. (#1688)
- Bump node12 version to latest (#1651)
- Add internal to node version function and use better env var name (#1715)
- Force JS Actions Node version to 16 if FF is on unless user opted out (#1716)
Bugs
- Fix windows console runner update crash (#1670)
- Retry policy for methods GetTenantCredential and GetJITRunnerTokenAsync (#1691)
- Skip DeleteAgentSession when the acess token has been revoked. (#1692)
- Repaired hashFiles call so if error was thrown, it was returned to process invoker (#1678)
- Runner throws null ref exception when new line after EOF is missing (#1687)
- Lets allow up to 150 characters for services on linux/mac (#1710)
Misc
- Added examples and aligned language within docs/checks/actions.md (#1664)
- Problem with debugging on macOS M1 (#1625)
- Fix typo in hashFiles.ts. (#1672)
- Allow mocked updates for E2E testing (#1654)
- Move JobTelemetry and StepsTelemetry into GlobalContext. (#1680)
- Fix inconsistency of outputs (both canceled and cancelled are used (#1624)
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.288.1/actions-runner-win-x64-2.288.1.zip -OutFile actions-runner-win-x64-2.288.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.288.1.zip", "$PWD")
OSX
# 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.288.1/actions-runner-osx-x64-2.288.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.288.1.tar.gz
Linux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.288.1/actions-runner-linux-x64-2.288.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.288.1.tar.gz
Linux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.288.1/actions-runner-linux-arm64-2.288.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.288.1.tar.gz
Linux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.288.1/actions-runner-linux-arm-2.288.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.288.1.tar.gz
Using your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
-
actions-runner-win-x64-2.288.1.zip 1b952ec1cd214f3836de39f83e7366623ef012b1d08b60506c56d11186fcb5a1
-
actions-runner-osx-x64-2.288.1.tar.gz 08d6dd274a1a497d052f5dae740a058d28660cfdcd8864d53857bd31a8521cdf
-
actions-runner-linux-x64-2.288.1.tar.gz 325b89bdc1c67264ec6f4515afda4534f14a6477d9ba241da19c43f9bed2f5a6
-
actions-runner-linux-arm64-2.288.1.tar.gz 9fbb98fc64f57d48e86b641bd3dd54d870123afc32886b5ca1c33bdc10afb6ee
-
actions-runner-linux-arm-2.288.1.tar.gz 5c72a731fec847fd9ede62b7424fa0d59fcb7f6e8dea7d50259ac1c6e534a685
-
actions-runner-win-x64-2.288.1-noexternals.zip ab12bec0032611749194d93d8137d8aaee04ed159e22b5629d32c9addc0f1989
-
actions-runner-osx-x64-2.288.1-noexternals.tar.gz c1aec2bcbe0044ef796f103d10d461322c57398d9b7aeccccf14528536632cf1
-
actions-runner-linux-x64-2.288.1-noexternals.tar.gz e3049fcb6b712688b7e37390ab8e2d109bbeb6a98e4207057506af72d644826a
-
actions-runner-linux-arm64-2.288.1-noexternals.tar.gz b3f6e69093ff0154dffcaf836ec31d6d306d38404bc81a0da1ea25cae531ea24
-
actions-runner-linux-arm-2.288.1-noexternals.tar.gz 40289aa6c3e582b18d0fa73fd27bd45242843f8b8110562387c78043a96883bb
-
actions-runner-win-x64-2.288.1-noruntime.zip 2f01b918608defcf1a8db1747d8244bf31ea2b5fa979972d60a164ee9cf4d659
-
actions-runner-osx-x64-2.288.1-noruntime.tar.gz 2a0472fac88a70e309401b2b37f6f9c55215fbbe444e1bc34e2487d9b3887335
-
actions-runner-linux-x64-2.288.1-noruntime.tar.gz 41bc48cf9f63e6a3595c9c7d6d2ca575170c30304b521728a2ec8cd2baa8d5dd
-
actions-runner-linux-arm64-2.288.1-noruntime.tar.gz 7e320a7429f8a80bb4aa705011ffc875e89053ad1b3a7daeea0256801aac8bf3
-
actions-runner-linux-arm-2.288.1-noruntime.tar.gz 6874f0020732b34c6c9b1abfe4f99b47782145426e250e42869cb16052e28a5f
-
actions-runner-win-x64-2.288.1-noruntime-noexternals.zip f3f6fedd1d1ead91507fe4dbfc2a76ea10ddb952778266368a0e3b8fba1dba39
-
actions-runner-osx-x64-2.288.1-noruntime-noexternals.tar.gz b3a22685d508fcc6195be9a3fb2ae9bfc537806976f50e21594a8c296b56453b
-
actions-runner-linux-x64-2.288.1-noruntime-noexternals.tar.gz e286508e9aebea32fd1e201624af1e980e6fe27fc4ab62a940ed4f69903c7650
-
actions-runner-linux-arm64-2.288.1-noruntime-noexternals.tar.gz 9efd98423a77452bb6cb90fbc3075c0b225e6aa52fe6575a7b32ffe611d00bec
-
actions-runner-linux-arm-2.288.1-noruntime-noexternals.tar.gz 76957fbc640c56af542f695c8274b7427720146ef7511f30406eafc3d3f5d8d9
v2.288.0
Features
- Make run.sh|cmd handle update without quitting so containers using them as entrypoints don't exit on update (#1646, #1633, #1708)
- Add support for Step Summary (#1642, #1667, #1712)
- Pass jobId to the actionsDownloadInfo controller (#1639)
- updated systemd svc.sh to accept custom service file (#1612)
- Add ability to specify runner group when creating service (#1675)
- Prefer node16 over node12 when running internal scripts (#1621)
- Sending telemetry about actions usage. (#1688)
- Bump node12 version to latest (#1651)
- Add internal to node version function and use better env var name (#1715)
- Force JS Actions Node version to 16 if FF is on unless user opted out (#1716)
Bugs
- Fix windows console runner update crash (#1670)
- Retry policy for methods GetTenantCredential and GetJITRunnerTokenAsync (#1691)
- Skip DeleteAgentSession when the acess token has been revoked. (#1692)
- Repaired hashFiles call so if error was thrown, it was returned to process invoker (#1678)
- Runner throws null ref exception when new line after EOF is missing (#1687)
- Lets allow up to 150 characters for services on linux/mac (#1710)
Misc
- Added examples and aligned language within docs/checks/actions.md (#1664)
- Problem with debugging on macOS M1 (#1625)
- Fix typo in hashFiles.ts. (#1672)
- Allow mocked updates for E2E testing (#1654)
- Move JobTelemetry and StepsTelemetry into GlobalContext. (#1680)
- Fix inconsistency of outputs (both canceled and cancelled are used (#1624)
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.288.0/actions-runner-win-x64-2.288.0.zip -OutFile actions-runner-win-x64-2.288.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.288.0.zip", "$PWD")
OSX
# 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.288.0/actions-runner-osx-x64-2.288.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.288.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.288.0/actions-runner-linux-x64-2.288.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.288.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.288.0/actions-runner-linux-arm64-2.288.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.288.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.288.0/actions-runner-linux-arm-2.288.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.288.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.288.0.zip 9ec6aa9a777a742caf05c8bfaf1cb33221b81033e3dd2672f66e1a597e7873e9
-
actions-runner-osx-x64-2.288.0.tar.gz 60f91f26c65f69a7ceadb9ad4a87da2ddabee71bdf6a849e739b3ef892ccfe8c
-
actions-runner-linux-x64-2.288.0.tar.gz c32ad1e50ead23ea4689b9b0992bb406ab5518390e430f5ff8a906d8210b65e8
-
actions-runner-linux-arm64-2.288.0.tar.gz 7c6009a0716925ad2714efc2a738d1b1c5c871c5df883969a7e556a8df05609c
-
actions-runner-linux-arm-2.288.0.tar.gz f7c1adf50d542bab6360e15334c4177cdcdec6e1bb0f18a7e7b6984126329b86
-
actions-runner-win-x64-2.288.0-noexternals.zip f4a288dea471de9b8b28112680e19d36dc1d1c0537086f514e85086d05a08b06
-
actions-runner-osx-x64-2.288.0-noexternals.tar.gz 9a6134c0e0fb518e2ac185526b15d0be5d2538d1dc1b97fb6c2b64e96fc67710
-
actions-runner-linux-x64-2.288.0-noexternals.tar.gz 0e77868448ac56665316ba15a24342031f9c3a65f81de37404d02f0f9fa03685
-
actions-runner-linux-arm64-2.288.0-noexternals.tar.gz 0f2058632f9577c693b800cb5cd812fa852d0b91cf26ace65b4739c5d2c68072
-
actions-runner-linux-arm-2.288.0-noexternals.tar.gz d6f0651eaa3d467aa5c0b5465fdf73933d96ce6ee56a2e77170bd077df91b30a
-
actions-runner-win-x64-2.288.0-noruntime.zip 37e07570f4d66e110343839e35eb6f195bde6d3ba53020828b8387becc3d5365
-
actions-runner-osx-x64-2.288.0-noruntime.tar.gz f8b4560f77fe9bf51ff83eb237702747e6487e30e74d8c0badd8eed12d52cfa7
-
actions-runner-linux-x64-2.288.0-noruntime.tar.gz 1d81e3a4de1de480dca076261e93cc107b6b1c04edc42ddee2df024c5d17ff17
-
actions-runner-linux-arm64-2.288.0-noruntime.tar.gz 3c37e829e18282c373c467a94a663b84c2225a30a9170502cf1c5303658c212c
-
actions-runner-linux-arm-2.288.0-noruntime.tar.gz 95a65c124fd4d722053ab53c1a473d66c097d10d5fba6aa82b6ff5fdc007f77d
-
actions-runner-win-x64-2.288.0-noruntime-noexternals.zip d834246a34b68148c4a36866706e903024efea06cdbbe6fee05243213125c891
-
actions-runner-osx-x64-2.288.0-noruntime-noexternals.tar.gz 184882cfc214aae99f4ce9c4f95226c1b01e1a764b95611fd5c8350bceaff563
-
actions-runner-linux-x64-2.288.0-noruntime-noexternals.tar.gz d9c99f120b8a7d97b997a089425b83b7e1115bfbb15fa811cb33fce35d416168
-
actions-runner-linux-arm64-2.288.0-noruntime-noexternals.tar.gz 986f05626907f77c3bd43670fa5889794b76bdf58df54e190cf89d670a5f5bc5
-
actions-runner-linux-arm-2.288.0-noruntime-noexternals.tar.gz 44cb66fdad943c099552b28841e1801c116a37500ba559995f5118fb91bfe1cf
v2.287.1
Features
Bugs
- Fixes an issue where the run.sh and run.cmd scripts were not working as expected (#1634)
Misc
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.287.1/actions-runner-win-x64-2.287.1.zip -OutFile actions-runner-win-x64-2.287.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.287.1.zip", "$PWD")
OSX
# 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.287.1/actions-runner-osx-x64-2.287.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.287.1.tar.gz
Linux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-x64-2.287.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.287.1.tar.gz
Linux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-arm64-2.287.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.287.1.tar.gz
Linux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.287.1/actions-runner-linux-arm-2.287.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.287.1.tar.gz
Using your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
-
actions-runner-win-x64-2.287.1.zip 91f8ab7837b2968328fa04fa14ec8f18767b0dfa12b2b293e77cf36ee6d33673
-
actions-runner-osx-x64-2.287.1.tar.gz e3c99df84f6e184e04c2dba60a8ad51a9d6115c29186d725a7d3d91561c3f839
-
actions-runner-linux-x64-2.287.1.tar.gz 8fa64384d6fdb764797503cf9885e01273179079cf837bfc2b298b1a8fd01d52
-
actions-runner-linux-arm64-2.287.1.tar.gz 9a59cb84458b27767e082080e7b575e42b36f0e32a493fc9627ca8e29f4b3346
-
actions-runner-linux-arm-2.287.1.tar.gz cd61ab3f9742a20d4fa69281153e8449ab5ad13ef7248ed2839bc232e15773fe
-
actions-runner-win-x64-2.287.1-noexternals.zip b1e35bb1c70eb89d978255cb3c47797fe404f104570f3b55d19db33fce0ad8b5
-
actions-runner-osx-x64-2.287.1-noexternals.tar.gz 15a653771bf351ba317eae21395b1129468c9ea24256dbcba7cdc761fe684f2e
-
actions-runner-linux-x64-2.287.1-noexternals.tar.gz 623213dcfa15cd81e4c7bcdd45a803e0af7aca410b36f3aa96e36080f9af4365
-
actions-runner-linux-arm64-2.287.1-noexternals.tar.gz c6f5f855cdff3e91bc8b3713dddbbfe9d5adedbe92305c82db9b14118ff8329b
-
actions-runner-linux-arm-2.287.1-noexternals.tar.gz c76ae025725bd8fa96ee30310bbb2f7a0a212d685e534ceb8fc1dd677efbae55
-
actions-runner-win-x64-2.287.1-noruntime.zip 02efd0599e4df86da820b447abc352eff18222fd68edea63991e0eea1c695b86
-
actions-runner-osx-x64-2.287.1-noruntime.tar.gz 633579fce1f44334e41ed60ae5f0f65bc76e28e7124981a6e506e18bd9bef48a
-
actions-runner-linux-x64-2.287.1-noruntime.tar.gz b2fef08214463600be37f95ef1ed50a0d345fe52cd8d843c458a7a18c347fbcd
-
actions-runner-linux-arm64-2.287.1-noruntime.tar.gz fdea344b5a6f4d067769472bd8459e8c145338d89dbb9f9a0460edeb39427108
-
actions-runner-linux-arm-2.287.1-noruntime.tar.gz 7b9e79c5f868a4f703bd5cfe84a896f64769e0c1de765ec4f4530a74661926cf
-
actions-runner-win-x64-2.287.1-noruntime-noexternals.zip 7a62a18ba15ad564cec960a3c9b38a65c5e9b3904a65d0ee6265485a34a3623a
-
actions-runner-osx-x64-2.287.1-noruntime-noexternals.tar.gz 5b2f8d1b45c17c8ba7ba49ab2edd94635018db1e43b7f1f6f5c474786f6e71ad
-
actions-runner-linux-x64-2.287.1-noruntime-noexternals.tar.gz 9c7c26ba109ca93779f27fef745c5e3671fdc10661ac782db9e1c70c57998bde
-
actions-runner-linux-arm64-2.287.1-noruntime-noexternals.tar.gz b4c44990323a2835e87614b003cb4457b2beb9d222f667cc70b87c6fcc7e2e4c
-
actions-runner-linux-arm-2.287.1-noruntime-noexternals.tar.gz b334ebf541142acb16348f3c46606deb101c08ababa89918ed68000cc38ef40c
v2.287.0
Features
- Add Runner Configuration option to disable auto update
--disableupdate
(#1558) - Introduce
GITHUB_ACTIONS_RUNNER_TLS_NO_VERIFY
env variable to skip SSL Cert Verification on the Runner (#1616) - Adds support for downloading trimmed versions of the runner when the entire package does not need to be upgraded (#1568)
Bugs
- Set Outcome/Conclusion for composite action steps (#1600)
Misc
- Update
run.sh
to more gracefully handle updates (#1494) - Use 8Mb default chunking for File Container Uploads (#1626)
- Performance improvements in handling large amounts of live logs (#1592)
- Allow
./svc.sh stop
to exit as soon as runner process exits (#1580) - Add additional tracing to help troubleshoot job message corruption (#1587)
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.287.0/actions-runner-win-x64-2.287.0.zip -OutFile actions-runner-win-x64-2.287.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.287.0.zip", "$PWD")
OSX
# 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.287.0/actions-runner-osx-x64-2.287.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.287.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.287.0/actions-runner-linux-x64-2.287.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.287.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.287.0/actions-runner-linux-arm64-2.287.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.287.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.287.0/actions-runner-linux-arm-2.287.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.287.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.287.0.zip 73b7a50809e10e1b142b8bcf73c1f399a0da154637f755d297258f30998dcaf2
-
actions-runner-osx-x64-2.287.0.tar.gz c6d05c16600511b70de71e505228cb634b7491a660c4c2984e243a32e1409a6e
-
actions-runner-linux-x64-2.287.0.tar.gz dd310ece5e54f4fc3a72d3bf5949362142f7d68744c59c13dbd901043fc20278
-
actions-runner-linux-arm64-2.287.0.tar.gz 70940998ab0458ec63c1c6fb405ebcaae85e624988145144ac72d49e3a9b63d1
-
actions-runner-linux-arm-2.287.0.tar.gz 44232a6c595a15be6d62c212a50042e4e340381db726ddffa3f8c1084bd4530d
-
actions-runner-win-x64-2.287.0-noexternals.zip 4bdbce951ed49019a28d8eec39ac0de96f9c69dec2a9ee7b3e4cb8af0900b99b
-
actions-runner-osx-x64-2.287.0-noexternals.tar.gz 064ed4327a1eba6baeec7007c05a3d74f3be271708f1124c28f664ccb0fa8b06
-
actions-runner-linux-x64-2.287.0-noexternals.tar.gz 046624b329b6cf24177e4b35f2b6948645a5f2f2b709350b634f7b0182bb5c79
-
actions-runner-linux-arm64-2.287.0-noexternals.tar.gz a1a130a75141be05bebfea4ed56db6d8cbcc4b4f258f466c1a6d7340ee019312
-
actions-runner-linux-arm-2.287.0-noexternals.tar.gz 5a70578a836b77877977c7cad884dc761318317e2262789c395cb8ef2097f2fe
-
actions-runner-win-x64-2.287.0-noruntime.zip 8bc686a09a75575f10a786107f16966176e56f76c6d16c48994b20497ee4c7df
-
actions-runner-osx-x64-2.287.0-noruntime.tar.gz ee9eee0864e36f1e993e0ec383e6fbad448f67dc15b4e547acdae4e716cb05ba
-
actions-runner-linux-x64-2.287.0-noruntime.tar.gz a2777c9bfdb93dea4e4aa784ef74353b1845ae506f33cb1dc9cc018935379871
-
actions-runner-linux-arm64-2.287.0-noruntime.tar.gz 8f6aaded5047168f54cf2d8bf0b806dea08b694cc2bec7008510bad2290aa27a
-
actions-runner-linux-arm-2.287.0-noruntime.tar.gz ed5ad9e77a39ed57cfdee6f1bceb0777202abfb041a0429d9bfe1883563eb12e
-
actions-runner-win-x64-2.287.0-noruntime-noexternals.zip 658c8b4f29884bab11af29b96e1d21ef2aa5751503d4c04c54a2ab6c9a811128
-
actions-runner-osx-x64-2.287.0-noruntime-noexternals.tar.gz 059ab3b06ac25177541a4c5a2c79b2092da0611acfff7fbf901071a0a42dab55
-
actions-runner-linux-x64-2.287.0-noruntime-noexternals.tar.gz fc6fbabf46a7b1e9d0cbfaabb03c0aa249b545c4d54c1ad47a86f703268498db
-
actions-runner-linux-arm64-2.287.0-noruntime-noexternals.tar.gz c5d89f7d6e5f4d5e97aabf3878e60d718d59649e49bc1ead8e1409da2751d045
-
actions-runner-linux-arm-2.287.0-noruntime-noexternals.tar.gz 145d9f91ba307a1a878403dbaa4cb85d93b5f5ab4ee0ba54eaf1c0eef3882dee