Skip to content

v2.310.2

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Oct 18:33

What's Changed

  • Prepare runner release 2.309.0 by @johnsudol in #2833
  • remove debug-only flag from stale bot action by @ruvceskistefan in #2834
  • Calculate docker instance label based on the hash of the config by @nikola-jokic in #2683
  • Correcting zen address by @Pantelis-Santorinios in #2855
  • Update dotnet sdk to latest version @6.0.414 by @github-actions in #2852
  • Bump @typescript-eslint/parser from 6.4.1 to 6.7.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2845
  • Bump @types/node from 20.5.6 to 20.6.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2854
  • Bump eslint-plugin-github from 4.9.2 to 4.10.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2808
  • Bump @typescript-eslint/parser from 6.7.0 to 6.7.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2858
  • Bump prettier from 3.0.2 to 3.0.3 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2860
  • Bump @vercel/ncc from 0.36.1 to 0.38.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2859
  • Bump @typescript-eslint/eslint-plugin from 6.4.1 to 6.7.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2861
  • Remove unused code in AgentManager. by @TingluoHuang in #2866
  • GetAgents from all runner groups durning config. by @TingluoHuang in #2865
  • Change alpine from vst blobs to OSS gha alpine build by @vanZeben in #2871
  • Bump node 16 to v16.20.2 by @vanZeben in #2872
  • Bump directly dotnet vulnerable packages by @nikola-jokic in #2870
  • Fix ArgumentOutOfRangeException in PowerShellPostAmpersandEscape. by @TingluoHuang in #2875
  • bump container hook version in runner image by @nikola-jokic in #2881
  • Use Directory.EnumerateFiles instead of Directory.GetFiles in WhichUtil. by @TingluoHuang in #2882
  • Add warning about node16 deprecation by @takost in #2887
  • Throw TimeoutException instead of OperationCanceledException on the final retry in DownloadRepositoryAction by @TingluoHuang in #2895
  • Update message when runners are deleted by @thboop in #2896
  • Do not give up if Results is powering logs by @yacaovsnc in #2893
  • Allow use action archive cache to speed up workflow jobs. by @TingluoHuang in #2857
  • Upgrade docker engine to 24.0.6 in the runner container image by @Link- in #2886
  • Collect telemetry to measure upload speed for different backend. by @TingluoHuang in #2912
  • Use RawHttpMessageHandler and VssHttpRetryMessageHandler in ResultsHttpClient by @yacaovsnc in #2908
  • Retries to lock Services database on Windows by @sugymt in #2880
  • Update default version to node20 by @takost in #2844
    • Revert "Update default version to node20" by @takost in #2918
  • Fixed Attempt typo by @corycalahan in #2849
  • Fix typo by @rajbos in #2670

New Contributors

Full Changelog: 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.2/actions-runner-win-x64-2.310.2.zip -OutFile actions-runner-win-x64-2.310.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.310.2.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.2/actions-runner-win-arm64-2.310.2.zip -OutFile actions-runner-win-arm64-2.310.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.310.2.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.2/actions-runner-osx-x64-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.310.2.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.2/actions-runner-osx-arm64-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.310.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.310.2/actions-runner-linux-x64-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.310.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.310.2/actions-runner-linux-arm64-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.310.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.310.2/actions-runner-linux-arm-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.310.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.310.2.zip cc4c9e357345a33bd99834daaf2e051730305e0a4e33e5a6b47d39e6a93844e4

  • actions-runner-win-arm64-2.310.2.zip ab6cc1f3ab4c866eee80c55ef92f7464ecd1d12caa6acc45bb9d6b1f99b8c92a

  • actions-runner-osx-x64-2.310.2.tar.gz 6e3e6017c25cf678bcc7015121aa64faa1c43e6243ee43a88d26c881fe60e324

  • actions-runner-osx-arm64-2.310.2.tar.gz 313b0066ba7f6c0a818e088f965b147320daad8f9ab6eac1b302ea4ccfb66733

  • actions-runner-linux-x64-2.310.2.tar.gz fb28a1c3715e0a6c5051af0e6eeff9c255009e2eec6fb08bc2708277fbb49f93

  • actions-runner-linux-arm64-2.310.2.tar.gz a64e2d69d022c269bfa5be9c3fbceecc95f6ec415688b4e85bbccd98e30a85b7

  • actions-runner-linux-arm-2.310.2.tar.gz 2b0d82479c73201b8a1058c5d8f4e7efaa3fe0502fc6d2f2f03cddbdb66ce320

  • actions-runner-win-x64-2.310.2-noexternals.zip 2af4b7171061a9a58e346814ea4a97f08d43ea07549b584c365002bf040b1d13

  • actions-runner-win-arm64-2.310.2-noexternals.zip 5af267a3f85b7c7c4586dc6296cdce6d0bda6718f11f6e9b81644467bac9d2af

  • actions-runner-osx-x64-2.310.2-noexternals.tar.gz c27f9b6074c76a71ed3e7cd4b0ae9b13fd1518b33971259ef8e2c20c145b44ac

  • actions-runner-osx-arm64-2.310.2-noexternals.tar.gz bde9d54ac9ac78f2556eabe097eeac9bc506f2b699b21bff321f04665d880b24

  • actions-runner-linux-x64-2.310.2-noexternals.tar.gz 9668a40be43d159a534056ed993a70c00d14cb8db0c8f27a85576bfc25775502

  • actions-runner-linux-arm64-2.310.2-noexternals.tar.gz eade9f2a477f04d09cea6b3d7415d9df7796ed95416c1d6c0be32ec8c2759410

  • actions-runner-linux-arm-2.310.2-noexternals.tar.gz ffd22c869f64af6f7efe131e77a239d04a068feb040bf6f3cd7d7e1dfcef0551

  • actions-runner-win-x64-2.310.2-noruntime.zip 374ad0df24f88a5ffc04ae57ffef8782fbb49ea2311b13b1e9ce3e41ca52bdc6

  • actions-runner-win-arm64-2.310.2-noruntime.zip 9965e87ccfb94ad9a9dc7ff55caa219596f9499ec481fe9c9dc99eeda8ad41aa

  • actions-runner-osx-x64-2.310.2-noruntime.tar.gz 12d72f8f6a750f68272a1000e8050f6ec430071648555519893b454519683880

  • actions-runner-osx-arm64-2.310.2-noruntime.tar.gz d0a880b7a06d32c6ec46f2846514230249c7cb3509664af64f3e95c6351213e3

  • actions-runner-linux-x64-2.310.2-noruntime.tar.gz 813d1132ca279661e6fa72e74cb2f3944dda3e6c29810776c9c48670cc42e270

  • actions-runner-linux-arm64-2.310.2-noruntime.tar.gz 2cc17dfe114589bd7c199b0020115c3e36178f26ccaa2aab1496d04ab844774b

  • actions-runner-linux-arm-2.310.2-noruntime.tar.gz 7a5d71c3840c5ca54c758790c04199bfbab2994fe674fd8a106b1bef9c2fe898

  • actions-runner-win-x64-2.310.2-noruntime-noexternals.zip b26b1b921386c4d41b92fbbe10f01cd1d6051b0d7acd050bf56d05d9e89c3eb5

  • actions-runner-win-arm64-2.310.2-noruntime-noexternals.zip c9472c6fcbeb0857990378abbca3017d6d82e37b6a752e3d6add87b1eff7e52c

  • actions-runner-osx-x64-2.310.2-noruntime-noexternals.tar.gz 47adb97ea7f5d9eca9fb1da2590427b8f1972d109a34e904fa02603942f19966

  • actions-runner-osx-arm64-2.310.2-noruntime-noexternals.tar.gz 6161d1ac7c9065344cf28c01cdc1b99f4bc62f1f0df45d9e7bb0f2e3e142c79d

  • actions-runner-linux-x64-2.310.2-noruntime-noexternals.tar.gz 2e8a8d3a0b8bd9eabd0746b70a7df4ac7826581766bc1a5d8681351dec3b7ccb

  • actions-runner-linux-arm64-2.310.2-noruntime-noexternals.tar.gz 9d6c6d35fac93a792491ff489bc45ba1c931907b09c4270cc49b9305a9cc8b9c

  • actions-runner-linux-arm-2.310.2-noruntime-noexternals.tar.gz e87ed8e18cb8535cca25b9af46f340cb08615b7f2963fa5c2fd4dadae096aefe