- Bump @types/node from 12.12.14 to 20.4.10 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2759
- Trace x-github-request-id when download action tarball. by @TingluoHuang in actions#2755
- Fix typo by @kyanny in actions#2741
- Bump prettier from 3.0.1 to 3.0.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2772
- Bump @types/node from 20.4.10 to 20.5.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2773
- Revert "Fixed a bug where a misplaced
=
character could bypass here… by @cory-miller in actions#2774 - Filter NODE_OPTIONS from env for file output by @cory-miller in actions#2775
- Bump @types/node from 20.5.0 to 20.5.1 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2781
- Update Docker Version in Images by @ajschmidt8 in actions#2694
- Bump @types/node from 20.5.1 to 20.5.4 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2789
- Bump @typescript-eslint/parser from 6.4.0 to 6.4.1 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2785
- Bump Microsoft.AspNet.WebApi.Client from 5.2.4 to 5.2.9 in /src by @dependabot in actions#2751
- Bump System.Buffers from 4.3.0 to 4.5.1 in /src by @dependabot in actions#2749
- Bump dotnet/runtime-deps from 6.0-jammy to 7.0-jammy in /images by @dependabot in actions#2745
- Remove need to manually compile JS binary for hashFiles utility by @vanZeben in actions#2770
- Revert "Bump dotnet/runtime-deps from 6.0-jammy to 7.0-jammy in /images" by @TingluoHuang in actions#2790
- Query runner by name on server side. by @TingluoHuang in actions#2771
- Bump typescript from 5.1.6 to 5.2.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2795
- Bump @types/node from 20.5.4 to 20.5.6 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2796
- Bump Newtonsoft.Json from 13.0.1 to 13.0.3 in /src by @dependabot in actions#2797
- Support replacing runners in v2 flow by @luketomlinson in actions#2791
- Delegating handler for Http redirects by @paveliak in actions#2814
- Add references to the firewall requirements docs by @paveliak in actions#2815
- Create automated workflow that will auto-generate dotnet sdk patches by @vanZeben in actions#2776
- Fixes minor issues with using proper output varaibles by @vanZeben in actions#2818
- Throw NonRetryableException on GetNextMessage from broker as needed. by @TingluoHuang in actions#2828
- Mark action download failures as infra failures by @cory-miller in actions#2827
- @kyanny made their first contribution in actions#2741
- @ajschmidt8 made their first contribution in actions#2694
Full Changelog: https://github.com/actions/runner/compare/v2.308.0...v2.309.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
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/v<RUNNER_VERSION>/actions-runner-win-x64-<RUNNER_VERSION>.zip -OutFile actions-runner-win-x64-<RUNNER_VERSION>.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-<RUNNER_VERSION>.zip", "$PWD")
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/v<RUNNER_VERSION>/actions-runner-win-arm64-<RUNNER_VERSION>.zip -OutFile actions-runner-win-arm64-<RUNNER_VERSION>.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-<RUNNER_VERSION>.zip", "$PWD")
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v<RUNNER_VERSION>/actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v<RUNNER_VERSION>/actions-runner-osx-arm64-<RUNNER_VERSION>.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-<RUNNER_VERSION>.tar.gz
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v<RUNNER_VERSION>/actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v<RUNNER_VERSION>/actions-runner-linux-arm64-<RUNNER_VERSION>.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-<RUNNER_VERSION>.tar.gz
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v<RUNNER_VERSION>/actions-runner-linux-arm-<RUNNER_VERSION>.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-<RUNNER_VERSION>.tar.gz
For additional details about configuring, running, or shutting down the runner please check out our product docs.
The SHA-256 checksums for the packages included in this build are shown below:
-
actions-runner-win-x64-<RUNNER_VERSION>.zip <WIN_X64_SHA>
-
actions-runner-win-arm64-<RUNNER_VERSION>.zip <WIN_ARM64_SHA>
-
actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz <OSX_X64_SHA>
-
actions-runner-osx-arm64-<RUNNER_VERSION>.tar.gz <OSX_ARM64_SHA>
-
actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz <LINUX_X64_SHA>
-
actions-runner-linux-arm64-<RUNNER_VERSION>.tar.gz <LINUX_ARM64_SHA>
-
actions-runner-linux-arm-<RUNNER_VERSION>.tar.gz <LINUX_ARM_SHA>
-
actions-runner-win-x64-<RUNNER_VERSION>-noexternals.zip <WIN_X64_SHA_NOEXTERNALS>
-
actions-runner-win-arm64-<RUNNER_VERSION>-noexternals.zip <WIN_ARM64_SHA_NOEXTERNALS>
-
actions-runner-osx-x64-<RUNNER_VERSION>-noexternals.tar.gz <OSX_X64_SHA_NOEXTERNALS>
-
actions-runner-osx-arm64-<RUNNER_VERSION>-noexternals.tar.gz <OSX_ARM64_SHA_NOEXTERNALS>
-
actions-runner-linux-x64-<RUNNER_VERSION>-noexternals.tar.gz <LINUX_X64_SHA_NOEXTERNALS>
-
actions-runner-linux-arm64-<RUNNER_VERSION>-noexternals.tar.gz <LINUX_ARM64_SHA_NOEXTERNALS>
-
actions-runner-linux-arm-<RUNNER_VERSION>-noexternals.tar.gz <LINUX_ARM_SHA_NOEXTERNALS>
-
actions-runner-win-x64-<RUNNER_VERSION>-noruntime.zip <WIN_X64_SHA_NORUNTIME>
-
actions-runner-win-arm64-<RUNNER_VERSION>-noruntime.zip <WIN_ARM64_SHA_NORUNTIME>
-
actions-runner-osx-x64-<RUNNER_VERSION>-noruntime.tar.gz <OSX_X64_SHA_NORUNTIME>
-
actions-runner-osx-arm64-<RUNNER_VERSION>-noruntime.tar.gz <OSX_ARM64_SHA_NORUNTIME>
-
actions-runner-linux-x64-<RUNNER_VERSION>-noruntime.tar.gz <LINUX_X64_SHA_NORUNTIME>
-
actions-runner-linux-arm64-<RUNNER_VERSION>-noruntime.tar.gz <LINUX_ARM64_SHA_NORUNTIME>
-
actions-runner-linux-arm-<RUNNER_VERSION>-noruntime.tar.gz <LINUX_ARM_SHA_NORUNTIME>
-
actions-runner-win-x64-<RUNNER_VERSION>-noruntime-noexternals.zip <WIN_X64_SHA_NORUNTIME_NOEXTERNALS>
-
actions-runner-win-arm64-<RUNNER_VERSION>-noruntime-noexternals.zip <WIN_ARM64_SHA_NORUNTIME_NOEXTERNALS>
-
actions-runner-osx-x64-<RUNNER_VERSION>-noruntime-noexternals.tar.gz <OSX_X64_SHA_NORUNTIME_NOEXTERNALS>
-
actions-runner-osx-arm64-<RUNNER_VERSION>-noruntime-noexternals.tar.gz <OSX_ARM64_SHA_NORUNTIME_NOEXTERNALS>
-
actions-runner-linux-x64-<RUNNER_VERSION>-noruntime-noexternals.tar.gz <LINUX_X64_SHA_NORUNTIME_NOEXTERNALS>
-
actions-runner-linux-arm64-<RUNNER_VERSION>-noruntime-noexternals.tar.gz <LINUX_ARM64_SHA_NORUNTIME_NOEXTERNALS>
-
actions-runner-linux-arm-<RUNNER_VERSION>-noruntime-noexternals.tar.gz <LINUX_ARM_SHA_NORUNTIME_NOEXTERNALS>