Skip to content

v2.308.0

Compare
Choose a tag to compare
@github-actions github-actions released this 02 Sep 08:05

Features

Misc

  • Pass timeout in ExecutionContext instead of StepsRunner (actions#2714)
  • Return early on invalid_client OAuth exception (actions#2721)
  • Expose results service endpoint as environment variable (actions#2726)
  • Update HTTPEventSourceListener to trace the right events (actions#2727)
  • Change RunnerId/AgentId from int32 to uint64 (actions#2661)
  • Configure stale bot for Runner (actions#2729)
  • Add in dependabot security scanning/updates (actions#2743)
  • Bump dotnet sdk to latest version (actions#2733)
  • Switch from InnerException to ErrorCode on disableupdate check (actions#2718)

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

  • actions-runner-win-arm64-2.308.0.zip 905deb35a65d48ec5f0a8de9684e167cef7684b1487484d1c36e9841870be300

  • actions-runner-osx-x64-2.308.0.tar.gz 4d827ea7b1404879caa328d8a455bed79c5129be5daf4fc8b37854256e37fc01

  • actions-runner-osx-arm64-2.308.0.tar.gz 3ef439e6c8c86b9c1ea93bf6c23d55809f7d866a633193f672593d58274f7a0c

  • actions-runner-linux-x64-2.308.0.tar.gz cf89b438be08cde909716fecae76bc0db8f716c1297243539ecd247987555ab3

  • actions-runner-linux-arm64-2.308.0.tar.gz 11ffd8ff4070c4ac2752d911efffdcf7424ada39d48650cfcdb94a8e0604ce61

  • actions-runner-linux-arm-2.308.0.tar.gz 74ca058c0efb3a9890448614ec80d07f5caf49e5f3ace25443bd4dd64ac68c4c

  • actions-runner-win-x64-2.308.0-noexternals.zip d8c5bb23a014bcadc81e7832d728ab03157365b8edbbb1ce4bf3571660a1de2f

  • actions-runner-win-arm64-2.308.0-noexternals.zip 2d40bdbf09fd53a66a258e998b332cfbeb7d5852142da0e8e0ac13c8854068f1

  • actions-runner-osx-x64-2.308.0-noexternals.tar.gz ea5fd99544ad196d9c4e349a95ecc2600e8c40d63a3750df9a4670171737c2ee

  • actions-runner-osx-arm64-2.308.0-noexternals.tar.gz 3276ac21f2f7f8a2b43442a0559e22722f2a94a52d93e65f9872030cec4c6356

  • actions-runner-linux-x64-2.308.0-noexternals.tar.gz 419c0148611e42fec1c9354cea32ca3ea513ed62bce3b974a4914d01d53efeb8

  • actions-runner-linux-arm64-2.308.0-noexternals.tar.gz 7bbf357420a68bacb581969073f5aef37f5ab33f2ec81ddb10a819259e595e88

  • actions-runner-linux-arm-2.308.0-noexternals.tar.gz 6b1af6c9e80342f0c1df6aece12f53c7d5c4aecd74ca51733b7082523c8d0673

  • actions-runner-win-x64-2.308.0-noruntime.zip b96c7893f04af9353daefc76589eb321958c8ff2a086a0faf6aae60a69afa332

  • actions-runner-win-arm64-2.308.0-noruntime.zip 579e01d6ac63d6f19641876e715a03e582384fc3f41f58bcff71aabdcc15db19

  • actions-runner-osx-x64-2.308.0-noruntime.tar.gz 504b1b0fe2654f00542ff0292587e2a045ea030db3858432927121841b8ee407

  • actions-runner-osx-arm64-2.308.0-noruntime.tar.gz 6acbe74e97ccd5242b1505323b818f2a498d3a29a4601e83f205b975f5fc10ce

  • actions-runner-linux-x64-2.308.0-noruntime.tar.gz 8f41bc4696e5b0807d17723e99aeb3bba5432ea3d7bf2072c6f9efb6e6b8038a

  • actions-runner-linux-arm64-2.308.0-noruntime.tar.gz 72258c724d61a608114fe9e628fa740a56613479df57ecb25e77c97977fc592d

  • actions-runner-linux-arm-2.308.0-noruntime.tar.gz 3714a9508ec95e2e6c7a0ade135e932d421b3e7fbb94e5d575c250c9f57b4d28

  • actions-runner-win-x64-2.308.0-noruntime-noexternals.zip a77c88d217fcba207b2a10a676727bea6b4ce72aed6e7c319cc4491af1f668a6

  • actions-runner-win-arm64-2.308.0-noruntime-noexternals.zip 53be564c5792ce98d192d13bf6a680d44369d4d4b892df86f9202ea94659a71a

  • actions-runner-osx-x64-2.308.0-noruntime-noexternals.tar.gz cc65ac637ff68ac7ea7a668f06aedbb745c6a62ac4dd50772da5530a2c14a23e

  • actions-runner-osx-arm64-2.308.0-noruntime-noexternals.tar.gz e0b8a75ecd912a4cae01ffe101c057049ca6ef62dd6e7212de4deff3ab6860d5

  • actions-runner-linux-x64-2.308.0-noruntime-noexternals.tar.gz 8c2a9dfab7a26d20287b28888f50d68f966933c3fac120f9a63dec4200455363

  • actions-runner-linux-arm64-2.308.0-noruntime-noexternals.tar.gz c1db83bc52187182edc2c5a5bc43b2656a0c05fe921bdbe84e0ddb73b6db7249

  • actions-runner-linux-arm-2.308.0-noruntime-noexternals.tar.gz 2dddbeb88f3104882f709b1419f53ef787f8093cd97911586156e55019072120