Skip to content

v2.310.1

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Oct 15:29

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

  • actions-runner-win-arm64-2.310.1.zip 98804c13959cb41f0d27703504f512b679b46b1da85c49e774e86712bcbf9f01

  • actions-runner-osx-x64-2.310.1.tar.gz 0e93b3dbdeb5d470373f6f9c8d04990b1c673ff03f1e441be1070ee861ba7a8d

  • actions-runner-osx-arm64-2.310.1.tar.gz 92d40e3ef59a095b54e2f752808bc1af6509955b307197c56b2724a045d30df4

  • actions-runner-linux-x64-2.310.1.tar.gz f3fcb14066b7f57c750875c18dd83cc7e440edfac7e9f6242a7e44d1dc36479e

  • actions-runner-linux-arm64-2.310.1.tar.gz 4e5362d53163e57f376bf2cbf42a7fa3f66b97d0630cd7c7241b43c34d130b98

  • actions-runner-linux-arm-2.310.1.tar.gz 133095d88de49d4dc3cb331ad61affecf8b8bab31a02b916fbb1968328ac3e44

  • actions-runner-win-x64-2.310.1-noexternals.zip 1501f3380feed7236b7180b27e2ef99f3bc69390e07265d7ea619b3e0d1a9c6f

  • actions-runner-win-arm64-2.310.1-noexternals.zip c390493551be7c9963c146e258c5d9039433dd345df364c68253afb99f0cea21

  • actions-runner-osx-x64-2.310.1-noexternals.tar.gz 0421dfa750bf9950f1e0948f40afbfa44a1a9c0eb5d2b014a12599e6708461c8

  • actions-runner-osx-arm64-2.310.1-noexternals.tar.gz 2f9cbb4ad5dd280e3bc5ba64c3f9830f131b4aea828c1b9ae49df6977a2aa504

  • actions-runner-linux-x64-2.310.1-noexternals.tar.gz 26eb79a649c9aaad7360d91ef92fd5d1a1bc8606127c2df3cb38929b33473b83

  • actions-runner-linux-arm64-2.310.1-noexternals.tar.gz 1b734ac483f0c6f542b9dd7a017481eae011e92a0b3d1a5852e672086c5ab631

  • actions-runner-linux-arm-2.310.1-noexternals.tar.gz 15c12b87278b11a56302a40ba88d7d402ff964aca8b6ed44f4863fcfab93442a

  • actions-runner-win-x64-2.310.1-noruntime.zip be9915e1382e2b44a92ef5d591cb2cc5d5e42297327963cecced401f40d03924

  • actions-runner-win-arm64-2.310.1-noruntime.zip 64e970497fb402a36229365a03c9711b4f2855f01978c907770c67d895555070

  • actions-runner-osx-x64-2.310.1-noruntime.tar.gz 6a92fcb4d75bfff53886a333009d670daf2d39d74b7d7d8fccdc96ec90c03e67

  • actions-runner-osx-arm64-2.310.1-noruntime.tar.gz 4b6602425720ff800fb46b582e6807c61d7df19cb2f696866e09028d20a53f4f

  • actions-runner-linux-x64-2.310.1-noruntime.tar.gz 2743d3d5efcc422dcc061280744ec473a76b0ec976bcaaa21a0754ec2b29c52a

  • actions-runner-linux-arm64-2.310.1-noruntime.tar.gz 163a1b529f4c4745699b4f8ab32d709614ae71627e9d0f0fe21c3345c71a2a40

  • actions-runner-linux-arm-2.310.1-noruntime.tar.gz 773f2d521e427acd5e8a31fb30e19427361f4f2b946b288689b639b6be16a46f

  • actions-runner-win-x64-2.310.1-noruntime-noexternals.zip 60eb385216ae413ece687c6d42a66ef232b229f15cd9f07d6da249ef1267c2d5

  • actions-runner-win-arm64-2.310.1-noruntime-noexternals.zip c03e35e02beaf7c37a399188e6c5f423e2fb5eb40cf11bf0ac7d50563667c023

  • actions-runner-osx-x64-2.310.1-noruntime-noexternals.tar.gz dfd3f3c2a3f0ce7fc319acb0538c9a5261d896cc7cb17721b01ce4898b984386

  • actions-runner-osx-arm64-2.310.1-noruntime-noexternals.tar.gz 75790a54071ab5ce2e810241945938c305c28b95d62952c512ad6f0f81729e4f

  • actions-runner-linux-x64-2.310.1-noruntime-noexternals.tar.gz f55c7a54199782037403abf68abf43c62847d0522f2d016a1b75547aa9ea343c

  • actions-runner-linux-arm64-2.310.1-noruntime-noexternals.tar.gz 82a68026d226239f8d19946af471fce7b1586f7b35fb608cc52dbfdc03bd4e58

  • actions-runner-linux-arm-2.310.1-noruntime-noexternals.tar.gz 0df8afc09f23d41c9502a116078963f59bd270862401301c5b6ada36be9e41a8