v2.310.0
What's Changed
- Prepare runner release 2.309.0 by @johnsudol in actions#2833
- remove debug-only flag from stale bot action by @ruvceskistefan in actions#2834
- Calculate docker instance label based on the hash of the config by @nikola-jokic in actions#2683
- Correcting
zen
address by @Pantelis-Santorinios in actions#2855 - Update dotnet sdk to latest version @6.0.414 by @github-actions in actions#2852
- Bump @typescript-eslint/parser from 6.4.1 to 6.7.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2845
- Bump @types/node from 20.5.6 to 20.6.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2854
- Bump eslint-plugin-github from 4.9.2 to 4.10.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2808
- Bump @typescript-eslint/parser from 6.7.0 to 6.7.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2858
- Bump prettier from 3.0.2 to 3.0.3 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2860
- Bump @vercel/ncc from 0.36.1 to 0.38.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2859
- Bump @typescript-eslint/eslint-plugin from 6.4.1 to 6.7.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2861
- Remove unused code in AgentManager. by @TingluoHuang in actions#2866
- GetAgents from all runner groups durning config. by @TingluoHuang in actions#2865
- Change alpine from vst blobs to OSS gha alpine build by @vanZeben in actions#2871
- Bump node 16 to v16.20.2 by @vanZeben in actions#2872
- Bump directly dotnet vulnerable packages by @nikola-jokic in actions#2870
- Fix ArgumentOutOfRangeException in PowerShellPostAmpersandEscape. by @TingluoHuang in actions#2875
- bump container hook version in runner image by @nikola-jokic in actions#2881
- Use
Directory.EnumerateFiles
instead ofDirectory.GetFiles
in WhichUtil. by @TingluoHuang in actions#2882 - Add warning about node16 deprecation by @takost in actions#2887
- Throw TimeoutException instead of OperationCanceledException on the final retry in DownloadRepositoryAction by @TingluoHuang in actions#2895
- Update message when runners are deleted by @thboop in actions#2896
- Do not give up if Results is powering logs by @yacaovsnc in actions#2893
- Allow use action archive cache to speed up workflow jobs. by @TingluoHuang in actions#2857
- Upgrade docker engine to 24.0.6 in the runner container image by @Link- in actions#2886
- Collect telemetry to measure upload speed for different backend. by @TingluoHuang in actions#2912
- Use RawHttpMessageHandler and VssHttpRetryMessageHandler in ResultsHttpClient by @yacaovsnc in actions#2908
- Retries to lock Services database on Windows by @sugymt in actions#2880
- Update default version to node20 by @takost in actions#2844
- Fixed Attempt typo by @corycalahan in actions#2849
- Fix typo by @rajbos in actions#2670
New Contributors
- @Pantelis-Santorinios made their first contribution in actions#2855
- @github-actions made their first contribution in actions#2852
- @sugymt made their first contribution in actions#2880
- @corycalahan made their first contribution in actions#2849
Full Changelog: actions/runner@v2.309.0...v2.310.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.310.0/actions-runner-win-x64-2.310.0.zip -OutFile actions-runner-win-x64-2.310.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.310.0.zip", "$PWD")
[Pre-release] Windows arm64
Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell
:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.310.0/actions-runner-win-arm64-2.310.0.zip -OutFile actions-runner-win-arm64-2.310.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.310.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.310.0/actions-runner-osx-x64-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.310.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.310.0/actions-runner-osx-arm64-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.310.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.310.0/actions-runner-linux-x64-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.310.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.310.0/actions-runner-linux-arm64-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.310.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.310.0/actions-runner-linux-arm-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.310.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.310.0.zip 131f7645fd79a09dd9d7dc57b529c7a0732a0927dddf08676fac53757a617a2b
-
actions-runner-win-arm64-2.310.0.zip f65b53831ca632da145ee105dcba488110dbd04e7b712af3d1c8e70b6d53702a
-
actions-runner-osx-x64-2.310.0.tar.gz d80455a530e4c02723c27073983d9c4ddb95fb3f8fc24fdfd81558a389dfd0ea
-
actions-runner-osx-arm64-2.310.0.tar.gz 8e9715742473e88160e648033ae69fde83d2784f5bcf9f7287c1523945c21931
-
actions-runner-linux-x64-2.310.0.tar.gz 4c2885d4a8756db351f393bbaa5d8bb160ec276156bad5f01edb4ae9d42e168b
-
actions-runner-linux-arm64-2.310.0.tar.gz 63ab769702cc4deb12a22e0449ba736aec2c9fa61c9854db2692aac37cf9acbc
-
actions-runner-linux-arm-2.310.0.tar.gz 4df1d156c30d2d7b0ccf3805e67b1d46db93bab8d8106f0b0e4260860f2f3909
-
actions-runner-win-x64-2.310.0-noexternals.zip adc07d64880f90401b6f0fd8cdd93584d53ed742bca4ea746d895af426c9dc4f
-
actions-runner-win-arm64-2.310.0-noexternals.zip 9cda3c46b206c07ad33b1d61a39cf2fc63eaa719d9ca375ca8e6bdb767310b91
-
actions-runner-osx-x64-2.310.0-noexternals.tar.gz 6d2a8ed156e0264bb642a25a0991844dd1e101a309b914b70e60725c542ad538
-
actions-runner-osx-arm64-2.310.0-noexternals.tar.gz faba49b4259fbe847f803851ef25523c7cceba84010839456e30a0ed7d8f9638
-
actions-runner-linux-x64-2.310.0-noexternals.tar.gz 15e86797d08a768713ecf8aff34a143523d6d11848145aae94d8361dba1b8298
-
actions-runner-linux-arm64-2.310.0-noexternals.tar.gz f7e08485a7f3fafe6f7c1f3e11b436d4692a4c65ab509b8bf04a39c9f10f1b05
-
actions-runner-linux-arm-2.310.0-noexternals.tar.gz b8c6f510cce4cb9c3d12f3656b7eec100f9e2f77f28c147e8afda5c963dff1b3
-
actions-runner-win-x64-2.310.0-noruntime.zip 317480b771dbff2c71afe709eab4c73228fb211810e3e7e67fe501f91d9df01b
-
actions-runner-win-arm64-2.310.0-noruntime.zip 1c79d1be4e3e5c6187f6c97ca8cc3c03056aca56b620afbab01d867f56c4d90d
-
actions-runner-osx-x64-2.310.0-noruntime.tar.gz bd19f68b712ab34a9379198929c9bf51dfd7ff2001060359e9e1bc02fd912fdc
-
actions-runner-osx-arm64-2.310.0-noruntime.tar.gz 717a3ab9fc01d1bef8d025ace18e359b613d26efd4abedeca62dbeda51f609c2
-
actions-runner-linux-x64-2.310.0-noruntime.tar.gz dce1b60158929f162b7414cc7f3a80abb6e121830a4bcfe7909e966e7eeef721
-
actions-runner-linux-arm64-2.310.0-noruntime.tar.gz b52fe457b84a4ac3aa06958720a3f58712e6b9912c31b7da26aa2942cf348938
-
actions-runner-linux-arm-2.310.0-noruntime.tar.gz f3cb58260f0cc86996724a25c726bea9c73b433efda39ea5025652f70c9e7ee9
-
actions-runner-win-x64-2.310.0-noruntime-noexternals.zip 57362c07bab4f6956e910a8a7df0cb94ba5bbf59655db446266cadd941038d7f
-
actions-runner-win-arm64-2.310.0-noruntime-noexternals.zip db3325d54daaa374ed5ab9468667ee287af05bda0796d46d4ef011f92c755fcd
-
actions-runner-osx-x64-2.310.0-noruntime-noexternals.tar.gz 9fd94703d27b3232f61bce82e9dde9219f0bd4c7d3fcdcc5d8277a31a701cead
-
actions-runner-osx-arm64-2.310.0-noruntime-noexternals.tar.gz 043fc9fc70b9100c88471596683fe0a997cec1a051ccddc49f610726e6805db6
-
actions-runner-linux-x64-2.310.0-noruntime-noexternals.tar.gz 9b9cd8e290ee8b46adf29e156a4cbed0cda21e44f80a326c754340e45f8fe3c2
-
actions-runner-linux-arm64-2.310.0-noruntime-noexternals.tar.gz 3d1be27c9cf52e4d54f1de6818ee2c617a995cdb49d84886dc52decf8c44bdc9
-
actions-runner-linux-arm-2.310.0-noruntime-noexternals.tar.gz 963dcb8571306fcc7ac398e8fc60c28d951fc13ea8274f54bc4881d0479b207f