## Features - Resolve Actions Directly From Launch for Run Service Jobs (#2529) - Send annotations to run-service (#2574) - Add `--no-default-labels` config option to self-hosted runners (#2443) - Update container-hooks to 0.3.2 in runner docker image (#2618) - Set runner environment in context and env (#2518) - Switch runner image from Debian to Ubuntu 22.04 (#2651) ## Bugs - Handle conflict errors from run service (#2570) - Fix null guard bug (#2576) - Trace WebSocket exception into verbose level to reduce noise in diag log (#2591) - Ensure multiple composite annotations are correctly written (#2311) - Adding Consistency to 'Failed To Resolve Action Download Info' Infrastructure Error Flagging (#2488) - Filter out empty arguments in container hooks (#2633) - Fix uses: docker://image:tag steps when container hook is used (#2626) ## Misc - Contribute.md: Fix link to style guidelines (#2560) - Remove Temporary Serialization Shim (#2549) - Move Using V2 Flow log to Trace (#2635) - Add utf8 with bom (#2641) _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`: ``` 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/actions-runner-win-x64-.zip -OutFile actions-runner-win-x64-.zip # Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-.zip", "$PWD") ``` ## [Pre-release] Windows arm64 **Warning:** Windows arm64 runners are currently in preview status and use [unofficial versions of nodejs](https://unofficial-builds.nodejs.org/). 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`: ``` 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/actions-runner-win-arm64-.zip -OutFile actions-runner-win-arm64-.zip # Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-.zip", "$PWD") ``` ## OSX x64 ``` bash # 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/actions-runner-osx-x64-.tar.gz # Extract the installer tar xzf ./actions-runner-osx-x64-.tar.gz ``` ## OSX arm64 (Apple silicon) ``` bash # 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/actions-runner-osx-arm64-.tar.gz # Extract the installer tar xzf ./actions-runner-osx-arm64-.tar.gz ``` ## Linux x64 ``` bash # 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/actions-runner-linux-x64-.tar.gz # Extract the installer tar xzf ./actions-runner-linux-x64-.tar.gz ``` ## Linux arm64 ``` bash # 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/actions-runner-linux-arm64-.tar.gz # Extract the installer tar xzf ./actions-runner-linux-arm64-.tar.gz ``` ## Linux arm ``` bash # 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/actions-runner-linux-arm-.tar.gz # Extract the installer tar xzf ./actions-runner-linux-arm-.tar.gz ``` ## Using your self hosted runner For additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners) ## SHA-256 Checksums The SHA-256 checksums for the packages included in this build are shown below: - actions-runner-win-x64-.zip - actions-runner-win-arm64-.zip - actions-runner-osx-x64-.tar.gz - actions-runner-osx-arm64-.tar.gz - actions-runner-linux-x64-.tar.gz - actions-runner-linux-arm64-.tar.gz - actions-runner-linux-arm-.tar.gz - actions-runner-win-x64--noexternals.zip - actions-runner-win-arm64--noexternals.zip - actions-runner-osx-x64--noexternals.tar.gz - actions-runner-osx-arm64--noexternals.tar.gz - actions-runner-linux-x64--noexternals.tar.gz - actions-runner-linux-arm64--noexternals.tar.gz - actions-runner-linux-arm--noexternals.tar.gz - actions-runner-win-x64--noruntime.zip - actions-runner-win-arm64--noruntime.zip - actions-runner-osx-x64--noruntime.tar.gz - actions-runner-osx-arm64--noruntime.tar.gz - actions-runner-linux-x64--noruntime.tar.gz - actions-runner-linux-arm64--noruntime.tar.gz - actions-runner-linux-arm--noruntime.tar.gz - actions-runner-win-x64--noruntime-noexternals.zip - actions-runner-win-arm64--noruntime-noexternals.zip - actions-runner-osx-x64--noruntime-noexternals.tar.gz - actions-runner-osx-arm64--noruntime-noexternals.tar.gz - actions-runner-linux-x64--noruntime-noexternals.tar.gz - actions-runner-linux-arm64--noruntime-noexternals.tar.gz - actions-runner-linux-arm--noruntime-noexternals.tar.gz