v2.310.0
版本发布时间: 2023-10-09 21:49:48
actions/runner最新发布版本:v2.320.0(2024-10-04 03:28:20)
What's Changed
- Prepare runner release 2.309.0 by @johnsudol in https://github.com/actions/runner/pull/2833
- remove debug-only flag from stale bot action by @ruvceskistefan in https://github.com/actions/runner/pull/2834
- Calculate docker instance label based on the hash of the config by @nikola-jokic in https://github.com/actions/runner/pull/2683
- Correcting
zen
address by @Pantelis-Santorinios in https://github.com/actions/runner/pull/2855 - Update dotnet sdk to latest version @6.0.414 by @github-actions in https://github.com/actions/runner/pull/2852
- Bump @typescript-eslint/parser from 6.4.1 to 6.7.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in https://github.com/actions/runner/pull/2845
- Bump @types/node from 20.5.6 to 20.6.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in https://github.com/actions/runner/pull/2854
- Bump eslint-plugin-github from 4.9.2 to 4.10.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in https://github.com/actions/runner/pull/2808
- Bump @typescript-eslint/parser from 6.7.0 to 6.7.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in https://github.com/actions/runner/pull/2858
- Bump prettier from 3.0.2 to 3.0.3 in /src/Misc/expressionFunc/hashFiles by @dependabot in https://github.com/actions/runner/pull/2860
- Bump @vercel/ncc from 0.36.1 to 0.38.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in https://github.com/actions/runner/pull/2859
- Bump @typescript-eslint/eslint-plugin from 6.4.1 to 6.7.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in https://github.com/actions/runner/pull/2861
- Remove unused code in AgentManager. by @TingluoHuang in https://github.com/actions/runner/pull/2866
- GetAgents from all runner groups durning config. by @TingluoHuang in https://github.com/actions/runner/pull/2865
- Change alpine from vst blobs to OSS gha alpine build by @vanZeben in https://github.com/actions/runner/pull/2871
- Bump node 16 to v16.20.2 by @vanZeben in https://github.com/actions/runner/pull/2872
- Bump directly dotnet vulnerable packages by @nikola-jokic in https://github.com/actions/runner/pull/2870
- Fix ArgumentOutOfRangeException in PowerShellPostAmpersandEscape. by @TingluoHuang in https://github.com/actions/runner/pull/2875
- bump container hook version in runner image by @nikola-jokic in https://github.com/actions/runner/pull/2881
- Use
Directory.EnumerateFiles
instead ofDirectory.GetFiles
in WhichUtil. by @TingluoHuang in https://github.com/actions/runner/pull/2882 - Add warning about node16 deprecation by @takost in https://github.com/actions/runner/pull/2887
- Throw TimeoutException instead of OperationCanceledException on the final retry in DownloadRepositoryAction by @TingluoHuang in https://github.com/actions/runner/pull/2895
- Update message when runners are deleted by @thboop in https://github.com/actions/runner/pull/2896
- Do not give up if Results is powering logs by @yacaovsnc in https://github.com/actions/runner/pull/2893
- Allow use action archive cache to speed up workflow jobs. by @TingluoHuang in https://github.com/actions/runner/pull/2857
- Upgrade docker engine to 24.0.6 in the runner container image by @Link- in https://github.com/actions/runner/pull/2886
- Collect telemetry to measure upload speed for different backend. by @TingluoHuang in https://github.com/actions/runner/pull/2912
- Use RawHttpMessageHandler and VssHttpRetryMessageHandler in ResultsHttpClient by @yacaovsnc in https://github.com/actions/runner/pull/2908
- Retries to lock Services database on Windows by @sugymt in https://github.com/actions/runner/pull/2880
- Update default version to node20 by @takost in https://github.com/actions/runner/pull/2844
- Fixed Attempt typo by @corycalahan in https://github.com/actions/runner/pull/2849
- Fix typo by @rajbos in https://github.com/actions/runner/pull/2670
New Contributors
- @Pantelis-Santorinios made their first contribution in https://github.com/actions/runner/pull/2855
- @github-actions made their first contribution in https://github.com/actions/runner/pull/2852
- @sugymt made their first contribution in https://github.com/actions/runner/pull/2880
- @corycalahan made their first contribution in https://github.com/actions/runner/pull/2849
Full Changelog: https://github.com/actions/runner/compare/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 b2ad34e2b7b5ecff93d8f022a1b9ae872d5116951013393b0d86ef290f426d57
-
actions-runner-win-arm64-2.310.0.zip 9cf5df1cb66b82b7feaed4d6891b1e0b97546e78c4c9a6626ecc2994e06d5075
-
actions-runner-osx-x64-2.310.0.tar.gz 2d60c6a09448cd5263523bf840f46d8ee177333926c891709ee4b2a871db8ec1
-
actions-runner-osx-arm64-2.310.0.tar.gz c458f67b4cd79461e756b75d2dda704dc009672d3e6b0927ac56cf8a802ff1fb
-
actions-runner-linux-x64-2.310.0.tar.gz 7ed6e2594aa8fc5b5a5e1986483f6683746f85695f4266a525e27b0e8e233ca7
-
actions-runner-linux-arm64-2.310.0.tar.gz 4aa4762880f3b17ff63ce585dd26aac783011c36bd034cdc06ca410d941d5274
-
actions-runner-linux-arm-2.310.0.tar.gz 1ad707e1e9eb03ae6ca7d04049dd00202325142f3f1122c6d46eb46ba486eb69
-
actions-runner-win-x64-2.310.0-noexternals.zip 03e99bd9aed88685f7942d9a18d96ddb1af7c4da11c6153e7f593a6f1e96ac50
-
actions-runner-win-arm64-2.310.0-noexternals.zip b0d8ccc824a62d3fee71b9b390b1d286a3dd62b84f1d6ed0b3030ca7af6a443b
-
actions-runner-osx-x64-2.310.0-noexternals.tar.gz d0a7b038062e80c81d84286405c438b1a63d79004d07490e7b85885cee99e789
-
actions-runner-osx-arm64-2.310.0-noexternals.tar.gz 091275f50d1a510a65e6ae64e30432bc0ff1d9320c4cd71d015abb890e12780b
-
actions-runner-linux-x64-2.310.0-noexternals.tar.gz 380bf166f149a99524997069aeb39c664fb3d4687c8066a9d397be2df6b0f541
-
actions-runner-linux-arm64-2.310.0-noexternals.tar.gz 9ed9c0a9b768e31299a9faf384797623a19d5632f5b91ca4027e02384a06420a
-
actions-runner-linux-arm-2.310.0-noexternals.tar.gz 27fde4b9d2faaef6f1fa64d9857056aae89b74b1eda330894b567e56cf503c82
-
actions-runner-win-x64-2.310.0-noruntime.zip 15b217939e7a1fd7b69c9fad146303d7be2603357988ef9f888854c412eaf13e
-
actions-runner-win-arm64-2.310.0-noruntime.zip 155c38b5a759e68b2dfa42283904187d7ad2e3f99cc557211812246b589a3f1f
-
actions-runner-osx-x64-2.310.0-noruntime.tar.gz a73d1204824b783bd1adca7b95b5b7ffa957d669231ae13edaf8d681e45ba489
-
actions-runner-osx-arm64-2.310.0-noruntime.tar.gz 75e9e8f56cf4ab62dd07caaca0d9354d5e534b46429263bcdf782cbb0a39617a
-
actions-runner-linux-x64-2.310.0-noruntime.tar.gz b5152195a2cf8527731ef6a3a26c390c13037b451dbbde0146105ac4364e98be
-
actions-runner-linux-arm64-2.310.0-noruntime.tar.gz 393282fbbc567e5c5c23947a13a506db31259070491c7bcabe20b94f9b53582f
-
actions-runner-linux-arm-2.310.0-noruntime.tar.gz 8c6880bae4755575d11da56aa230bc4adc1383319e3899264b23cdc700d7765e
-
actions-runner-win-x64-2.310.0-noruntime-noexternals.zip afce137ab5a6ebdca5fb0470eef6e2b8343fd7c6e294c90a7e13f7d5c60eff56
-
actions-runner-win-arm64-2.310.0-noruntime-noexternals.zip e65ae43d7a5e9fa28ebc0b68e45e06bd29fd1b3afb15a49fd4cc93e7adb038e1
-
actions-runner-osx-x64-2.310.0-noruntime-noexternals.tar.gz 4e03b9f01688a2924dfae1bccf1ddaacbf9d374b7f4c64408d41334c6ac7091c
-
actions-runner-osx-arm64-2.310.0-noruntime-noexternals.tar.gz 7fed094d9bef6a99f780f0cd92f59dfeb0f99ab59a16325ce4d9acef462b923d
-
actions-runner-linux-x64-2.310.0-noruntime-noexternals.tar.gz ab550267c88d91fc31a2483ffe7a8ca21f5d64a53ee2580e050ebf10bba3a154
-
actions-runner-linux-arm64-2.310.0-noruntime-noexternals.tar.gz 0cdc5be684ef89eff4ea2f500a7d564d8e0723ee4c104626016f76b0776de7c4
-
actions-runner-linux-arm-2.310.0-noruntime-noexternals.tar.gz 704cc846800f1bb4cce4effd5e190908deac6d15d1e15237713f4fc2ba2537fa
1、 actions-runner-linux-arm-2.310.0-noexternals.tar.gz 30.01MB
2、 actions-runner-linux-arm-2.310.0-noruntime-noexternals.tar.gz 1.8MB
3、 actions-runner-linux-arm-2.310.0-noruntime.tar.gz 72.27MB
4、 actions-runner-linux-arm-2.310.0-trimmedpackages.json 1.2KB
5、 actions-runner-linux-arm-2.310.0.tar.gz 100.21MB
6、 actions-runner-linux-arm64-2.310.0-noexternals.tar.gz 29.78MB
7、 actions-runner-linux-arm64-2.310.0-noruntime-noexternals.tar.gz 1.81MB
8、 actions-runner-linux-arm64-2.310.0-noruntime.tar.gz 78.27MB
9、 actions-runner-linux-arm64-2.310.0-trimmedpackages.json 1.2KB
10、 actions-runner-linux-arm64-2.310.0.tar.gz 105.97MB
11、 actions-runner-linux-x64-2.310.0-noexternals.tar.gz 32.02MB
12、 actions-runner-linux-x64-2.310.0-noruntime-noexternals.tar.gz 1.88MB
13、 actions-runner-linux-x64-2.310.0-noruntime.tar.gz 148.87MB
14、 actions-runner-linux-x64-2.310.0-trimmedpackages.json 1.2KB
15、 actions-runner-linux-x64-2.310.0.tar.gz 178.73MB
16、 actions-runner-osx-arm64-2.310.0-noexternals.tar.gz 29.58MB
17、 actions-runner-osx-arm64-2.310.0-noruntime-noexternals.tar.gz 1.82MB
18、 actions-runner-osx-arm64-2.310.0-noruntime.tar.gz 70.79MB
19、 actions-runner-osx-arm64-2.310.0-trimmedpackages.json 1.2KB
20、 actions-runner-osx-arm64-2.310.0.tar.gz 97.81MB
21、 actions-runner-osx-x64-2.310.0-noexternals.tar.gz 31.4MB
22、 actions-runner-osx-x64-2.310.0-noruntime-noexternals.tar.gz 1.82MB
23、 actions-runner-osx-x64-2.310.0-noruntime.tar.gz 73.61MB
24、 actions-runner-osx-x64-2.310.0-trimmedpackages.json 1.19KB
25、 actions-runner-osx-x64-2.310.0.tar.gz 102.45MB
26、 actions-runner-win-arm64-2.310.0-noexternals.zip 30.71MB
27、 actions-runner-win-arm64-2.310.0-noruntime-noexternals.zip 1.96MB
28、 actions-runner-win-arm64-2.310.0-noruntime.zip 47.32MB
29、 actions-runner-win-arm64-2.310.0-trimmedpackages.json 1.22KB
30、 actions-runner-win-arm64-2.310.0.zip 75.77MB
31、 actions-runner-win-x64-2.310.0-noexternals.zip 33.22MB
32、 actions-runner-win-x64-2.310.0-noruntime-noexternals.zip 1.99MB
33、 actions-runner-win-x64-2.310.0-noruntime.zip 52.87MB
34、 actions-runner-win-x64-2.310.0-trimmedpackages.json 1.21KB
35、 actions-runner-win-x64-2.310.0.zip 83.81MB