github actions/runner v2.310.0

latest releases: v2.319.1, v2.319.0, v2.318.0...
11 months ago

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
  • 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.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

Don't miss a new runner release

NewReleases is sending notifications on new releases.