- Notifications
You must be signed in to change notification settings - Fork1.2k
v2.327.1
9513afdWhat's Changed
- Try add orchestrationid into user-agent using token claim. by@TingluoHuang in#3945
- Fix null reference exception in user agent handling by@salmanmkc in#3946
- Runner Support for executing Node24 Actions by@salmanmkc in#3940
- Update dotnet sdk to latest version @8.0.412 by @github-actions[bot] in#3941
New Contributors
- @salmanmkc made their first contribution in#3946
Full Changelog:v2.326.0...v2.327.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.
Seehttps://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 onpowershell:
# Create a folder under the drive rootmkdir \actions-runner ; cd \actions-runner# Download the latest runner packageInvoke-WebRequest-Uri https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-win-x64-2.327.1.zip-OutFile actions-runner-win-x64-2.327.1.zip# Extract the installerAdd-Type-AssemblyName System.IO.Compression.FileSystem ;[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.327.1.zip","$PWD")
Windows arm64
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 onpowershell:
# Create a folder under the drive rootmkdir \actions-runner ; cd \actions-runner# Download the latest runner packageInvoke-WebRequest-Uri https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-win-arm64-2.327.1.zip-OutFile actions-runner-win-arm64-2.327.1.zip# Extract the installerAdd-Type-AssemblyName System.IO.Compression.FileSystem ;[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.327.1.zip","$PWD")
OSX x64
# Create a foldermkdir actions-runner&&cd actions-runner# Download the latest runner packagecurl -O -L https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-osx-x64-2.327.1.tar.gz# Extract the installertar xzf ./actions-runner-osx-x64-2.327.1.tar.gz
OSX arm64 (Apple silicon)
# Create a foldermkdir actions-runner&&cd actions-runner# Download the latest runner packagecurl -O -L https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-osx-arm64-2.327.1.tar.gz# Extract the installertar xzf ./actions-runner-osx-arm64-2.327.1.tar.gz
Linux x64
# Create a foldermkdir actions-runner&&cd actions-runner# Download the latest runner packagecurl -O -L https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-linux-x64-2.327.1.tar.gz# Extract the installertar xzf ./actions-runner-linux-x64-2.327.1.tar.gz
Linux arm64
# Create a foldermkdir actions-runner&&cd actions-runner# Download the latest runner packagecurl -O -L https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-linux-arm64-2.327.1.tar.gz# Extract the installertar xzf ./actions-runner-linux-arm64-2.327.1.tar.gz
Linux arm
# Create a foldermkdir actions-runner&&cd actions-runner# Download the latest runner packagecurl -O -L https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-linux-arm-2.327.1.tar.gz# Extract the installertar xzf ./actions-runner-linux-arm-2.327.1.tar.gz
Using your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out ourproduct docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.327.1.zip 7179db618e7f79e0ce63d96b15f3b6cf6e69996b2094f7f02208b7786c50b6a3
- actions-runner-win-arm64-2.327.1.zip 615ccbbe4880f9c09ee2878431b100e62cfced000e9b3a0886a8130335e13e5d
- actions-runner-osx-x64-2.327.1.tar.gz a0cb80fb6baacf5c669ccd5c2f64429033a7b4dac1e020b4231a4fc5ff396b76
- actions-runner-osx-arm64-2.327.1.tar.gz 807f875f4a357a9c919b484329c072e885ef2c041a18d3107cf1a1e5932eecc0
- actions-runner-linux-x64-2.327.1.tar.gz d68ac1f500b747d1271d9e52661c408d56cffd226974f68b7dc813e30b9e0575
- actions-runner-linux-arm64-2.327.1.tar.gz 16102096988246f250a745c6a813a5a0b8901e2f554f9440c97e8573fd4da111
- actions-runner-linux-arm-2.327.1.tar.gz b6f34af6d11f5f023fe23aa8bcb01f392eaad30d70e1e31f4e68bbdbb315eda8
Assets9
Uh oh!
There was an error while loading.Please reload this page.