Skip to content

Releases: actions/runner

v2.309.0

07 Sep 16:42
bdfef34
Compare
Choose a tag to compare

What's Changed

  • Bump @types/node from 12.12.14 to 20.4.10 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2759
  • Trace x-github-request-id when download action tarball. by @TingluoHuang in #2755
  • Fix typo by @kyanny in #2741
  • Bump prettier from 3.0.1 to 3.0.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2772
  • Bump @types/node from 20.4.10 to 20.5.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2773
  • Revert "Fixed a bug where a misplaced = character could bypass here… by @cory-miller in #2774
  • Filter NODE_OPTIONS from env for file output by @cory-miller in #2775
  • Bump @types/node from 20.5.0 to 20.5.1 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2781
  • Update Docker Version in Images by @ajschmidt8 in #2694
  • Bump @types/node from 20.5.1 to 20.5.4 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2789
  • Bump @typescript-eslint/parser from 6.4.0 to 6.4.1 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2785
  • Bump Microsoft.AspNet.WebApi.Client from 5.2.4 to 5.2.9 in /src by @dependabot in #2751
  • Bump System.Buffers from 4.3.0 to 4.5.1 in /src by @dependabot in #2749
  • Bump dotnet/runtime-deps from 6.0-jammy to 7.0-jammy in /images by @dependabot in #2745
  • Remove need to manually compile JS binary for hashFiles utility by @vanZeben in #2770
  • Revert "Bump dotnet/runtime-deps from 6.0-jammy to 7.0-jammy in /images" by @TingluoHuang in #2790
  • Query runner by name on server side. by @TingluoHuang in #2771
  • Bump typescript from 5.1.6 to 5.2.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2795
  • Bump @types/node from 20.5.4 to 20.5.6 in /src/Misc/expressionFunc/hashFiles by @dependabot in #2796
  • Bump Newtonsoft.Json from 13.0.1 to 13.0.3 in /src by @dependabot in #2797
  • Support replacing runners in v2 flow by @luketomlinson in #2791
  • Delegating handler for Http redirects by @paveliak in #2814
  • Add references to the firewall requirements docs by @paveliak in #2815
  • Create automated workflow that will auto-generate dotnet sdk patches by @vanZeben in #2776
  • Fixes minor issues with using proper output varaibles by @vanZeben in #2818
  • Throw NonRetryableException on GetNextMessage from broker as needed. by @TingluoHuang in #2828
  • Mark action download failures as infra failures by @cory-miller in #2827

New Contributors

Full Changelog: 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

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

  • actions-runner-win-arm64-2.309.0.zip 114d11ba8b95c22946c642cc9190c2214f6a2da60c2996ae26e2d9dc176f994e

  • actions-runner-osx-x64-2.309.0.tar.gz cce9394ff3e619d24c6a285fb2a633202c115f058437675b53fedd8fb01ec7ce

  • actions-runner-osx-arm64-2.309.0.tar.gz 67c1accb9cdc2138fc797d379c295896c01c8f5f4240e7e674f99a492bd1c668

  • actions-runner-linux-x64-2.309.0.tar.gz 2974243bab2a282349ac833475d241d5273605d3628f0685bd07fb5530f9bb1a

  • actions-runner-linux-arm64-2.309.0.tar.gz b172da68eef96d552534294e4fb0a3ff524e945fc5d955666bab24eccc6ed149

  • actions-runner-linux-arm-2.309.0.tar.gz 97d3c06c8e2b33fcab4c5afd0237e596c52cc4450465382bcbd49a4b23b978a9

  • actions-runner-win-x64-2.309.0-noexternals.zip 3be84215fa5658db013da201d38abd147bfbc48bf8775c62b2da8b760a1a9afe

  • actions-runner-win-arm64-2.309.0-noexternals.zip 914d512a90bb9b090701cffb11bb4b413d2f7a9e09e7ddad7c3b2d439c090461

  • actions-runner-osx-x64-2.309.0-noexternals.tar.gz 4397b8b0722b2223e50a7490720059786ce7429e8e5de81905671562f0a2291e

  • actions-runner-osx-arm64-2.309.0-noexternals.tar.gz ebe017bde8ea8939ef1633f003b03bc5c461e0fc843e477e21d4df402d08abde

  • actions-runner-linux-x64-2.309.0-noexternals.tar.gz 58ae2e9e6425f4acab67fbdaf6362f8cb893d5884a660ef1b0f3d983af3df1e0

  • actions-runner-linux-arm64-2.309.0-noexternals.tar.gz de2cbc67d23eb3c479bc7e6c24abb74a589d8ce7f6c2aa1...

Read more

v2.308.0

14 Aug 10:50
7f7ff15
Compare
Choose a tag to compare

Features

  • Support linux/arm64 docker build (#2601)
  • Add node20 to runner (#2732)
  • Update node16 to latest version (#2736)
  • Remove node12 from runner (#2717)

Misc

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

  • actions-runner-win-arm64-2.308.0.zip 569a8d18b6a4171b95dcc69075c3dda6088982fdcad72cb95540179f6c2a9c3c

  • actions-runner-osx-x64-2.308.0.tar.gz b90f41c2f3af19c4feea5e70d32c6634e800663af95cdd892a322b304d5ca2de

  • actions-runner-osx-arm64-2.308.0.tar.gz a8b2c25868e4296cbd203342754223dd2cc17f91585592c99ccd85b587d05310

  • actions-runner-linux-x64-2.308.0.tar.gz 9f994158d49c5af39f57a65bf1438cbae4968aec1e4fec132dd7992ad57c74fa

  • actions-runner-linux-arm64-2.308.0.tar.gz e39b3137fcaad3262e1def26d3e42cdd810c831a3c836deeb560a2266338b503

  • actions-runner-linux-arm-2.308.0.tar.gz 907d72620afe986a2c1b28091413fbdbf818236a83e19a9022c9aa57f6b35cf5

  • actions-runner-win-x64-2.308.0-noexternals.zip 669d5d1125e1c4aff65e71ec035cb15b676342adfe05d9bc17fedc77676a31cd

  • actions-runner-win-arm64-2.308.0-noexternals.zip 0d4cfffda5be90052c3df0c66161a4e369ce1f63afcd5e629bea7944b8db296b

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

  • actions-runner-osx-arm64-2.308.0-noexternals.tar.gz 4bd20d7d2f177fe548256186e65b9f89ca391f011a4ff966b36e05a994fa6e08

  • actions-runner-linux-x64-2.308.0-noexternals.tar.gz 051e285234580161f77836b40a9e7c3d9cd93def29bf09100b6f88fd94f40c86

  • actions-runner-linux-arm64-2.308.0-noexternals.tar.gz a8da2e2845a5c4e55b380f328c8dcb6720793222671de25e41d39299c095dc93

  • actions-runner-linux-arm-2.308.0-noexternals.tar.gz 4273a052a454b3f3d1228d7320adff75c70c24cbb20d0b026f5f11e4d72ac2a3

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

  • actions-runner-win-arm64-2.308.0-noruntime.zip 42d301c25e601da886f5b405ad85c8327cb3217442346ce21fdc46e125b33f92

  • actions-runner-osx-x64-2.308.0-noruntime.tar.gz 65f4fb8afee2acaef4813a29b790fddd9787b806067a1871ad72e226567917d1

  • actions-runner-osx-arm64-2.308.0-noruntime.tar.gz be071195e542136a8d95956eaf793e9e02a964b39c768aa0b1f2409bb71c01ef

  • actions-runner-linux-x64-2.308.0-noruntime.tar.gz 5b6d6865a664634269cd2ba9ed370e5f0363db41d466c1d06cdf75a03b78677c

  • actions-runner-linux-arm64-2.308.0-noruntime.tar.gz 7142707ef5b1bc69c41068ce3caec1a45f0a17c8b96800bc6d56277b5e9d7b0b

  • actions-runner-linux-arm-2.308.0-noruntime.tar.gz 031c5d2e1005feb53c544593b3fcf2ca1288b6117b8d910a705c95e2e7b460c5

  • actions-runner-win-x64-2.308.0-noruntime-noexternals.zip 152b5921c2934b4fd38b39489014796519c685efb3f93e0b34e4dafe1a89329a

  • actions-runner-win-arm64-2.308.0-noruntime-noexternals.zip b8d5516be21490072a8d674b1a9795bb2cdd1ad6b830142b7833efc16665e8e6

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

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

  • actions-runner-linux-x64-2.308.0-noruntime-noexternals.tar.gz 4498e87da43dcc869ac0f8b0dd73f94bdd4307d48b29b0965fe7752e8a1107c9

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

  • ...

Read more

v2.307.1

25 Jul 12:45
2a7e9ad
Compare
Choose a tag to compare

Bugs

  • Fixes if:cancelled() composite steps not running and normal composite steps not interrupting when the job is cancelled (#2638)
  • Fix the bug causing double error reporting fix to remain inactive (#2703)

Misc

  • Collect telemetry on GitHub-related HTTP requests (#2691)

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

  • actions-runner-win-arm64-2.307.1.zip 428868b0a034b07ac0b0abd47dc3bbe7ef65361429c4aa46eaaddc8248dce438

  • actions-runner-osx-x64-2.307.1.tar.gz 7835fa206242ee8ec985a2124cd486a7ebaf4264e43948f20200095b19f32170

  • actions-runner-osx-arm64-2.307.1.tar.gz e80cc999df5a2214df6a72008442913a41e85bad0be6e6be0f22dbc03bbd054a

  • actions-runner-linux-x64-2.307.1.tar.gz 038c9e98b3912c5fd6d0b277f2e4266b2a10accc1ff8ff981b9971a8e76b5441

  • actions-runner-linux-arm64-2.307.1.tar.gz 01edc84342ef4128a8f19bc2f33709b40f2f1c40e250e2a4c5e0adf620044ab3

  • actions-runner-linux-arm-2.307.1.tar.gz dbf978d969f4101bcef40eac438a43a3a763720ad2ed06f3eecbbbce16126d79

  • actions-runner-win-x64-2.307.1-noexternals.zip dd3218239289fc3f4e5067e4f05ca987afdd1fa52d21e2775b791688c7dd65ea

  • actions-runner-win-arm64-2.307.1-noexternals.zip d015f839c85b33af00aa068b016312e4797cd9753ba54a1c46c9ea06e60faa67

  • actions-runner-osx-x64-2.307.1-noexternals.tar.gz e53dfcf0e19ccff14996f3cf95aa214ea4d236bad41b8d828b01da09033c75e7

  • actions-runner-osx-arm64-2.307.1-noexternals.tar.gz 512c39d4d03008989a427d10051e46797856245ee6924902941da403f10f3747

  • actions-runner-linux-x64-2.307.1-noexternals.tar.gz 2e4c06048edfa988b3dd6e16e1c74f5e9c2320bb7cd0f71c7305f400d6238f46

  • actions-runner-linux-arm64-2.307.1-noexternals.tar.gz 26e43578e7743234ce11a7c96b6269b92ef3de2746fde21bd40223cd0aa1bf5c

  • actions-runner-linux-arm-2.307.1-noexternals.tar.gz 5af958593c78ba21836d714895d40edf31107e226fc771327748deecace299b3

  • actions-runner-win-x64-2.307.1-noruntime.zip e9b43357abe78bd5277d77695747153c304bce8d87750e1b54a31106b0f62c8c

  • actions-runner-win-arm64-2.307.1-noruntime.zip a8e2c96acb625120bbb2c2f1a43181cb53ede25e8c780649918122dc42ea3411

  • actions-runner-osx-x64-2.307.1-noruntime.tar.gz 8d50786a1bac384824c0d4f240a9bcc67da70ad4537912c00e0cd146ae6c8f1e

  • actions-runner-osx-arm64-2.307.1-noruntime.tar.gz 3341d60c4798b9a400b294a65be1bc68aacdce7567124c733c78c2918bbed55f

  • actions-runner-linux-x64-2.307.1-noruntime.tar.gz 737f23a15d47b5fce2c096eb53c8414ee9b9254a9b30af33ad0a684e0b217443

  • actions-runner-linux-arm64-2.307.1-noruntime.tar.gz b8a39af975d246896cb527a0b360b8f2faffad20743b1cf1c925d5059e2e6d77

  • actions-runner-linux-arm-2.307.1-noruntime.tar.gz 903f9cdc87f898722d42d808ccd191e5275ce92b3297e176e7b87c6ed46f0c02

  • actions-runner-win-x64-2.307.1-noruntime-noexternals.zip 7287a3e920f2ef0f1bded86b9a2de0583628f4a82486bb02b59e5c91797880fa

  • actions-runner-win-arm64-2.307.1-noruntime-noexternals.zip 0d055b48213ce55dbea83e944e55fd974b9f57d1351e63b44a42d065f79d8e0d

  • actions-runner-osx-x64-2.307.1-noruntime-noexternals.tar.gz d1396fd3c77f5d91ff5550fec79307c96e808996d3068fce8bc25c4605637e59

  • actions-runner-osx-arm64-2.307.1-noruntime-noexternals.tar.gz f4734ecb06e3454a0b90c2f4f3312efc554410a1918e4c93e9165313eaff3fef

  • actions-runner-linux-x64-2.307.1-noruntime-noexternals.tar.gz 9654ebd4f3eaf14b8df96521c749d17fc4d253f428bab141749c678072c55933

  • actions-runner-linux-arm64-2.307.1-noruntime-noexternals.tar.gz e4b6e178ae4897e2bdd50cbbbae773199050387d94aa73d7ad363e71dac8b397

  • actions-runner-linux-arm-2.307.1-noruntime-noexternals.tar.gz ea48ae905acdf7138da1e860ddbe6fb656ffb0583a4a8d9af5a8d19f9b7474ab

v2.307.0

24 Jul 11:35
f8ad46b
Compare
Choose a tag to compare

Bugs

  • Fixes if:cancelled() composite steps not running and normal composite steps not interrupting when the job is cancelled (#2638)
  • Fix the bug causing double error reporting fix to remain inactive (#2703)

Misc

  • Collect telemetry on GitHub-related HTTP requests (#2691)

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

  • actions-runner-win-arm64-2.307.0.zip 455e359e036ef9580c96aaae6086e4405e28ccc3e6d0899f47cc6618d49e6056

  • actions-runner-osx-x64-2.307.0.tar.gz 094877222f5076a9b5c4477495a983fc6186da9c32565d4c6f1d9e0158bf5807

  • actions-runner-osx-arm64-2.307.0.tar.gz 61192dc2a5878f0262065c5530b6d1d5eb9b3864003b648deb4fd9dce0b66fa7

  • actions-runner-linux-x64-2.307.0.tar.gz 13be5edefd6298185ef57dbb97cb60481009d8058819d7971baef2773b4544c1

  • actions-runner-linux-arm64-2.307.0.tar.gz 5ed2ca5a6f99336510d738ec92b6d42b52373d9724959b95987bf254c43e060a

  • actions-runner-linux-arm-2.307.0.tar.gz f7f7b763d564cb6272595ed5649066b07ca39754e4a5f69ffa025be046c5a263

  • actions-runner-win-x64-2.307.0-noexternals.zip 26c4033de7383551ac0ef561f90cd62bfd0a6cc9ead40a980885f4622dcfcd9e

  • actions-runner-win-arm64-2.307.0-noexternals.zip 17870b4eb7d1e0ba5f38acf65c92b188d5b7835460120dfc1adcbbc1b6de31f8

  • actions-runner-osx-x64-2.307.0-noexternals.tar.gz 8fe63719511ebd2c7e8b1b1ccb839dad551100796b1392c576cde4865a4287a4

  • actions-runner-osx-arm64-2.307.0-noexternals.tar.gz de70a9a6895da78c502e537d366d970b7cb30de2f24a86e5a304cf7c5e2ed422

  • actions-runner-linux-x64-2.307.0-noexternals.tar.gz 9797498a6aa2bb1eba81ef24204c09c7e656bf6e56b23f7bfcf567ba51932c3f

  • actions-runner-linux-arm64-2.307.0-noexternals.tar.gz e01bf226da96a22bfbc1fd9702037f90dbdfe1e1a28a8a283276170be437b0c1

  • actions-runner-linux-arm-2.307.0-noexternals.tar.gz 51f218a980e09ff1db0bb88678974250c3bf90749f9d12bac122cdbc822708a4

  • actions-runner-win-x64-2.307.0-noruntime.zip ac88235702866de3417944b17f345a7fe70c4155935ab8eb75125067948ebdfd

  • actions-runner-win-arm64-2.307.0-noruntime.zip ae221a4319aa80059a0f16569cec82b87b7d07f46010d17e0c719347ff0a9e6d

  • actions-runner-osx-x64-2.307.0-noruntime.tar.gz 26c8d024f059d5757fd2f220a2127c682cedcc24a35e01c6deb37ec052e6dca0

  • actions-runner-osx-arm64-2.307.0-noruntime.tar.gz 90d7f5b073922e8974a0eaecf1c00c0e943f68d8f28947caf18066d97f13b642

  • actions-runner-linux-x64-2.307.0-noruntime.tar.gz 4105b7c7e5656c9090f78666f20f1e00eb493d7a436540dd84916c22de044791

  • actions-runner-linux-arm64-2.307.0-noruntime.tar.gz b25b2a4c01e7d401224a0133f5d1e4fbad96b46f1527c9b8bbca59c85c08f805

  • actions-runner-linux-arm-2.307.0-noruntime.tar.gz 00b29fd6fc14437c37068979846ed9e5dd978d31339647df8a302cd3acc41457

  • actions-runner-win-x64-2.307.0-noruntime-noexternals.zip 4099d070ee8aa0d29bb0f0b766f4df1fe8e4ee2d813d636e07f3b27803eee48d

  • actions-runner-win-arm64-2.307.0-noruntime-noexternals.zip 129fb022e40a87ba0a3d0c80fb7e96f11debb82eddde9d6cad719b68978215b0

  • actions-runner-osx-x64-2.307.0-noruntime-noexternals.tar.gz d4be2b167fa19a26ecf7be8a8d54c9fbb641a6f97461149e680b0185475567cb

  • actions-runner-osx-arm64-2.307.0-noruntime-noexternals.tar.gz 2f70f5cb2c970b662b2ebb1683d7b577bbc250426f43cfe8489aa4c352f975b5

  • actions-runner-linux-x64-2.307.0-noruntime-noexternals.tar.gz 735e694ea756b8594afe9df14540e26f0256e17a53e723731287389b0a00e4dd

  • actions-runner-linux-arm64-2.307.0-noruntime-noexternals.tar.gz c2bb8458fffa839ff18750eb051b35040ba1860088262727ad9059c33b9cc2a8

  • actions-runner-linux-arm-2.307.0-noruntime-noexternals.tar.gz 241f8464682be44ee73362a210638188dfd5f565a2f38b3fce24e61bb9b08668

v2.304.1

11 Jul 11:43
Compare
Choose a tag to compare
v2.304.1 Pre-release
Pre-release

Features

  • Runner changes for communication with Results service (#2510, #2531, #2535, #2516)
  • Add *.ghe.localhost domains to hosted server check (#2536)
  • Add OrchestrationId to user-agent for better telemetry correlation. (#2568)
  • Add warning to notify about forcing actions to run on node16 instead of node12 (#2678)

Bugs

  • Fix JIT configurations on Windows (#2497)
  • Guard against NullReference while creating HostContext (#2343)
  • Handles broken symlink in Which (#2150, #2196)
  • Adding curl retry for external tool downloads (#2552, #2557)
  • Limit the time we wait for waiting websocket to connect. (#2554)

Misc

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

  • actions-runner-win-arm64-2.304.1.zip d51220c67d463991eceb5862821514b38ee4b771b992b446d45e43e920afb7c5

  • actions-runner-osx-x64-2.304.1.tar.gz 8165ca0618fc70aad03af14e325d7623687aa9708b6f49d5983b6d66879ec983

  • actions-runner-osx-arm64-2.304.1.tar.gz f604f793bc2df91fd0c5adc27a98f2bd5aebdc6d33d30d031a4495fdef2cb737

  • actions-runner-linux-x64-2.304.1.tar.gz 27f2ad7eb52f8463a1475e8291c1e96af77eaa3b6872489560f1e96ab6d374e6

  • actions-runner-linux-arm64-2.304.1.tar.gz 3eed798b5c3e306df9f492b3df0ce246d6087535601255084ee1b910d06ffe2d

  • actions-runner-linux-arm-2.304.1.tar.gz c736bd2f2fe9190f810ab718d067d43fc870b0b3694383cd6e3f603eaea675c4

  • actions-runner-win-x64-2.304.1-noexternals.zip b10afd9e2ef6ac76cc9e92f4cecc66f9050c169866118bcbdf9e3525dc7a696d

  • actions-runner-win-arm64-2.304.1-noexternals.zip 7c0279d4945be87d7abc9733fccaee76da199488405668822ea1daa169f45fb1

  • actions-runner-osx-x64-2.304.1-noexternals.tar.gz e64dac906f067228a55516ed622be41d4e46c9f94d9126391abbf817575c817c

  • actions-runner-osx-arm64-2.304.1-noexternals.tar.gz 26c0617a9e99fcd74195054bd72b45040a443807fcb89e0e117f426b01793985

  • actions-runner-linux-x64-2.304.1-noexternals.tar.gz b58f36d620a454a8e3f6cac9a5c10d5e8104a25f37a69728a3895e64ff3c4b96

  • actions-runner-linux-arm64-2.304.1-noexternals.tar.gz 8bf35c4a4b874422c74a8a049dd4134fa2a1d9195814375b9796bd0ed16447cb

  • actions-runner-linux-arm-2.304.1-noexternals.tar.gz b2b4b96a4939e46cdd58280b15896e8137b4f55c1fbaf94e1ceba360f0511047

  • actions-runner-win-x64-2.304.1-noruntime.zip af7a8ac13bfb9052e46e486d22b69ed52a02e589fd2b29041734371e24bec48f

  • actions-runner-win-arm64-2.304.1-noruntime.zip 02e863bf3909973bce2bf654f1c47e4875016c56236298c8b408fd6e61ca463d

  • actions-runner-osx-x64-2.304.1-noruntime.tar.gz bd62aaa87581d9f9f6cc260abc4fcf0ba2efa6f43847944c21a803a2aa336ccf

  • actions-runner-osx-arm64-2.304.1-noruntime.tar.gz c8543652f98faf808946324b7d3cf5d3a99050ec14c23a64213bf24c0e4d9c23

  • actions-runner-linux-x64-2.304.1-noruntime.tar.gz 783cc27e45a6551c810e1f1c0fd5bec20645cfae31f17d58bacf38c6fc1d5bfd

  • actions-runner-linux-arm64-2.304.1-noruntime.tar.gz 5435a6ad3b9f7eb3107e28cdcc58e7455a655103cd49fa549fe9ba4459fed175

  • actions-runner-linux-arm-2.304.1-noruntime.tar.gz 70257c87f141798b989006fe26cdbb8d0ee03c9f3da97ce85a5c34ffd37bb053

  • actions-runner-win-x64-2.304.1-noruntime-noexternals.zip be58b27b8e6ebfd4cded63cfbd057137bc9721a13a1d3a5a5162a27929af4698

  • actions-runner-win-arm64-2.304.1-noruntime-noexternals.zip 522d4020610d834b78528b7d61cc4564bb252fb59d21c20243cb508844da7fdc

  • actions-runner-osx-x64-2.304.1-noruntime-noexternals.tar.gz 90d3103cfffb5ef68826bf8dc04428e33b63bd6dc1b3ba12639d76ecea192340

  • actions-runner-osx-arm64-2.304.1-noruntime-noexternals.tar.gz 071ee9890d7ee6c8ae69656bc9c1a967897db84ff1dd9c9c9f3222aa93365695

  • actions-runner-linux-x64-2.304.1-noruntime-noexternals.tar.gz 34d6c5d5dace7c85bc1a1cc40dbc496e3474c0bb9d060977e1681d6ddec361e2<!-- END SHA linux-x64_noruntime_noexter...

Read more

v2.306.0

07 Jul 11:53
da6dfe9
Compare
Choose a tag to compare

Features

  • Add warning to notify about forcing actions to run on node16 instead of node12 (#2678)

Bugs

  • Remove job completion from runner listener (#2659)
  • Fix double error reporting (#2656)
  • Fix a bug with incorrect parsing of image values in a container action (#1873)
  • Fix error message reported on non-local action setup (#2668)
  • Extend github context with host-workspace (#2517)
  • Fixed a bug where a misplaced = character could bypass heredoc-style processing (#2627)

Misc

  • Send environment url to Run Service (#2650)
  • Reduce token service and unnecessary calls - send token to redirects (#2660)
  • Add 'http://' to http(s)_proxy if there is no protocol (#2663)
  • Remove extra result step for job itself (#2620)

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

  • actions-runner-win-arm64-2.306.0.zip 70655f84090b0e4630ce310777a0a955d47390fdaf136687bc854d006e9f3e3a

  • actions-runner-osx-x64-2.306.0.tar.gz 842bfb1d707fd7af153bb819cdc3e652bc451b9110b76fcb4b4a4ba0c4da553a

  • actions-runner-osx-arm64-2.306.0.tar.gz 4e4a5e7de762c800c4d41196bf6ed070581a1e3c4a2169178d3dbc27509a55a8

  • actions-runner-linux-x64-2.306.0.tar.gz b0a090336f0d0a439dac7505475a1fb822f61bbb36420c7b3b3fe6b1bdc4dbaa

  • actions-runner-linux-arm64-2.306.0.tar.gz 842a9046af8439aa9bcabfe096aacd998fc3af82b9afe2434ddd77b96f872a83

  • actions-runner-linux-arm-2.306.0.tar.gz 01799a8e6c39788a9f848e903de1ed7d0503d695d0ccc57f4c57ca78f35499c6

  • actions-runner-win-x64-2.306.0-noexternals.zip d5e5400ac9803129c4daf0366cf0c5a45bb784a5c24a2fede46dcf2a8ed7aa6e

  • actions-runner-win-arm64-2.306.0-noexternals.zip 92f6d7a6f5c984004b4d74a6e8b87d0ec9ce42f54f0016d3b45528c3a72627e8

  • actions-runner-osx-x64-2.306.0-noexternals.tar.gz 9a37e71964a83a1bb8efd7b6461181e5c51106d612407763523d75c6cf38f8ba

  • actions-runner-osx-arm64-2.306.0-noexternals.tar.gz ed119d1142b8ac00d69a0c68c6e0adf0eec35ffbdf3e6e0174b754dfab693d80

  • actions-runner-linux-x64-2.306.0-noexternals.tar.gz 4f4b5e0e21023f2a53c9a0a91c95e5bbd33e695623c5c3c8236dde4e8032f96c

  • actions-runner-linux-arm64-2.306.0-noexternals.tar.gz 9d817daa7a766c5a3d2ae7eb42c11935066cea8f1b1d3b9e333cba325654ee5b

  • actions-runner-linux-arm-2.306.0-noexternals.tar.gz f7ea01dc5b0d7e4dc7ca243d810f55bb135ed436912ac3361bb68d089c4387aa

  • actions-runner-win-x64-2.306.0-noruntime.zip 51debad8a601bbe49af63b55e67f1febdec18a025243420dc252b55a51314e80

  • actions-runner-win-arm64-2.306.0-noruntime.zip 53d4554a89fb6a5c34a1f375c9358bdeec795750214f3382e16c26b6fe230f5a

  • actions-runner-osx-x64-2.306.0-noruntime.tar.gz a7dd7064aaf7cd09498cec95e656024b67fcd42a2354a89e4c1b24e4c89f2ac9

  • actions-runner-osx-arm64-2.306.0-noruntime.tar.gz 7022b4004e045c213cc02f61ced7412fc936ba6bedac25caab88c82d44e5f77c

  • actions-runner-linux-x64-2.306.0-noruntime.tar.gz f4417785eff5060d21cb47c104a09e02d12feeda971bde230c98d0f6613c1384

  • actions-runner-linux-arm64-2.306.0-noruntime.tar.gz 83ee93d70d90e27764d9577a27e345fb3baf810f30779e5ec7f9b61b4ff9c1e4

  • actions-runner-linux-arm-2.306.0-noruntime.tar.gz 60e6be3e5abc736933e846c7af55a606dbb1576ae3628d203b9064a13a264e86

  • actions-runner-win-x64-2.306.0-noruntime-noexternals.zip da3e790a4a8c79191082bf3a737958fa6b1c6889cc15c3f645bf8c41b4c89765

  • actions-runner-win-arm64-2.306.0-noruntime-noexternals.zip 566dd7d54c266c4cccfdb3f97e0e76bb79f79305c456bc4a0296b056e5b8c8a5

  • actions-runner-osx-x64-2.306.0-noruntime-noexternals.tar.gz 603b8976ea31b2cd44374a127582c22a188b14e338292c83f2e4c474a0beca8e

  • actions-runner-osx-arm64-2.306.0-noruntime-noexternals.tar.gz 1269824a2fb8f70f1e35e8aa4bb4f06c41122c65e8b6febeb5ee2d963ed82a8f

  • actions-runner-linux-x64-2.306.0-noruntime-noexternals.tar.gz f39902fd12ecae097a0a428a39918b28f4912f26afb08967301775f362bc1c07

  • actions-runner-linux-arm64-2.306.0-noruntime-noexternals.tar.gz 70aa27839eade6d5ee8fc90b66b37f9fddcefbc36a0ed73d84608f926fb5a6fa<!-- END SHA l...

Read more

v2.305.0

14 Jun 13:21
6cbe663
Compare
Choose a tag to compare

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:

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

  • actions-runner-win-arm64-2.305.0.zip ceca238249697e6d1e282448979d868b3a1789012f146d4381739e88653b8b88

  • actions-runner-osx-x64-2.305.0.tar.gz a7c623e013f97db6c73c27288047c1d02ab6964519020ad0e87e69c328e96534

  • actions-runner-osx-arm64-2.305.0.tar.gz a2383a869b99793dee5e1ff7c1df4e7bc86f73521ae03f884f0c7aa43830e2cb

  • actions-runner-linux-x64-2.305.0.tar.gz 737bdcef6287a11672d6a5a752d70a7c96b4934de512b7eb283be6f51a563f2f

  • actions-runner-linux-arm64-2.305.0.tar.gz 63d7b0ba495055e390ac057dc67d721ed78113990fa837a20b141a75044e152a

  • actions-runner-linux-arm-2.305.0.tar.gz 5b2b53d9739a4821c32068311bb28f54200dc7404e4785578f88280d11488854

  • actions-runner-win-x64-2.305.0-noexternals.zip 1979a1a630859e7388cc6ada179e84aaa7bfebbca81d32f129fa7cecb0d86765

  • actions-runner-win-arm64-2.305.0-noexternals.zip a78526f63c8650266d891c96fb833fea639c5aff68726eaf274b637945b8e9a6

  • actions-runner-osx-x64-2.305.0-noexternals.tar.gz 18289af18d503553d0a417605872fd1264f7a3b829fec1cfac21c5617245d83f

  • actions-runner-osx-arm64-2.305.0-noexternals.tar.gz 08c18dab8fe8f211bdf428deca821832258c68818ed9e7aa6794b3eea6b8144b

  • actions-runner-linux-x64-2.305.0-noexternals.tar.gz 0b2f50144d2ce13ea5cbec217698e9a638782a80b5b9909e18bae68a3cadbfa5

  • actions-runner-linux-arm64-2.305.0-noexternals.tar.gz 74f656ed5e42ea6158fa0266d95c19192cb6355aad1866a53c700d07a7762a08

  • actions-runner-linux-arm-2.305.0-noexternals.tar.gz c8ec7f49bf1422c6c755a966ab4c505ef7f47091bc6a1f493b0f96af173610a6

  • actions-runner-win-x64-2.305.0-noruntime.zip a0f1866a26bf37f5fbcb3c67928e49470840cd06eea08abdb0b9aec0a5f762ae

  • actions-runner-win-arm64-2.305.0-noruntime.zip d7e8e18a8153ecefe19152eccf6a2460e29f22cb974e99122d58af19ade3c0ed

  • actions-runner-osx-x64-2.305.0-noruntime.tar.gz 07943a9b86d262ee85767eef5c04fb147df419cd919e5a1f3bb89c8a148c7cb3

  • actions-runner-osx-arm64-2.305.0-noruntime.tar.gz 6465758b138a385b17f6ec39b18050648e286c23b0ba7c165b10af01497b5edd

  • actions-runner-linux-x64-2.305.0-noruntime.tar.gz 6d8c60dc30f6c298978ebd62af95b14518a68367eb5dbe03a5da0e20f3d56df9

  • actions-runner-linux-arm64-2.305.0-noruntime.tar.gz cc632cc632ba084e870ffbcc54d18be02386abf83939d36b83332aeafd1f58cd

  • actions-runner-linux-arm-2.305.0-noruntime.tar.gz 100b45840a213a24bbbf8a253a8fc282e26e70fab7d12f82ceaa487b72aff1e4

  • actions-runner-win-x64-2.305.0-noruntime-noexternals.zip 93931e904c8aecdfda23398d45766d873df864d7ced353486d088c8b5a1d0e5b

  • actions-runner-win-arm64-2.305.0-noruntime-noexternals.zip 7e4fa63ca9b4442cc6a4e445b93d02f51948aba5978d4cf3264cab0898637d08

  • actions-runner-osx-x64-2.305.0-noruntime-noexternals.tar.gz ce890dd27f6ae907ff26ed46ed9c77752efbe5b1e57db190c20ee4a563eeffdb

  • actions-runner-osx-arm64-2.305.0-noruntime-noexternals.tar.gz 859d9dc38a489aa79d06f196c67377d424552f91590f865bf076ea3cd949f07b

  • actions-runner-linux-x64-2.305.0-noruntime-noexternals.tar.gz 07f9fd4fc7990456085794...

Read more

v2.304.0

26 Apr 20:09
9ef4121
Compare
Choose a tag to compare

Features

  • Runner changes for communication with Results service (#2510, #2531, #2535, #2516)
  • Add *.ghe.localhost domains to hosted server check (#2536)
  • Add OrchestrationId to user-agent for better telemetry correlation. (#2568)

Bugs

  • Fix JIT configurations on Windows (#2497)
  • Guard against NullReference while creating HostContext (#2343)
  • Handles broken symlink in Which (#2150, #2196)
  • Adding curl retry for external tool downloads (#2552, #2557)
  • Limit the time we wait for waiting websocket to connect. (#2554)

Misc

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

  • actions-runner-win-arm64-2.304.0.zip 8f11f1240ff97da21efa96649a71b1dd579eaf077bcdbfe532aac56e778ef469

  • actions-runner-osx-x64-2.304.0.tar.gz 26dddab8eafc193bb8b27afc5844ff3a6f789a655aca5bf79b018493963681a7

  • actions-runner-osx-arm64-2.304.0.tar.gz 789fc57af2f0819d470fcc447e2970f201cfc8aa1d803d4e5b748ec4c5d10db8

  • actions-runner-linux-x64-2.304.0.tar.gz 292e8770bdeafca135c2c06cd5426f9dda49a775568f45fcc25cc2b576afc12f

  • actions-runner-linux-arm64-2.304.0.tar.gz 34c49bd0e294abce6e4a073627ed60dc2f31eee970c13d389b704697724b31c6

  • actions-runner-linux-arm-2.304.0.tar.gz 9b988321757805f0d650574f49808ed7c7b31a691551b205f724e68f5ed9b543

  • actions-runner-win-x64-2.304.0-noexternals.zip d8f5b989b87cdc305dfe1d60042e1d9dbfa7171a1b8cef50a32c4318cddc0aec

  • actions-runner-win-arm64-2.304.0-noexternals.zip 9cd2216851572552b1cb73c2b04b42816404e756bf72fa2ae1d2bcdcc35cb05b

  • actions-runner-osx-x64-2.304.0-noexternals.tar.gz 0b671152926c770f3388db7745181ebc332ac4d172b9c0072085ada1e60170c8

  • actions-runner-osx-arm64-2.304.0-noexternals.tar.gz b1158738876eab7bf4b82219d61ad4624482cebe804665d8cd0aed6715b7ef7a

  • actions-runner-linux-x64-2.304.0-noexternals.tar.gz fcdb9fa40bb61fb5572d7fa880ec45fee62c5790edcea54878fb63d8decaa9c3

  • actions-runner-linux-arm64-2.304.0-noexternals.tar.gz af63cd2364acf0be85d0ebd1bf13dfb55bea2e6a57a6001ff8bacff8b1b9724d

  • actions-runner-linux-arm-2.304.0-noexternals.tar.gz 615fb4be6b8130256080ac121e717c03ff04ced58b93adf3afbf76b3e0dbe044

  • actions-runner-win-x64-2.304.0-noruntime.zip c09665369d2b4c5314a3a80721840d0619a83f946796529a421e7de37770c12d

  • actions-runner-win-arm64-2.304.0-noruntime.zip e5d5233170f45581335e8eaf21b00b96ed70b30cc39a7fd3c25d3c9bd26d6aba

  • actions-runner-osx-x64-2.304.0-noruntime.tar.gz c212455d760c8ed5c748dd6fa95a1c35cd1bb5d48de2b2be4a067e22123bc921

  • actions-runner-osx-arm64-2.304.0-noruntime.tar.gz 2d539f07492a7cca228f5054b598bc61760e4e4d1c0e79c011f0781ecf6f2e09

  • actions-runner-linux-x64-2.304.0-noruntime.tar.gz a68149267a89bd308ef579c512bf26c0c9eca8db892dbccf295423f2da7ed97c

  • actions-runner-linux-arm64-2.304.0-noruntime.tar.gz bf0b87c51be47f5b4a52ee20b1698202a1417b6679c6adb0f59ef98e76ae9f38

  • actions-runner-linux-arm-2.304.0-noruntime.tar.gz 895c36443b34bb05d4ba3c78bdbd9a6eaf1a8ff24e8253d2060c1a41a2bc129e

  • actions-runner-win-x64-2.304.0-noruntime-noexternals.zip 8f290aa634da0aeac715e2e075ac4b5e367210b693871d8964262b2653491745

  • actions-runner-win-arm64-2.304.0-noruntime-noexternals.zip d28315d1ae4f72a27af6c397a6c2ce6f5a28af1d165526131348aa41aa255c2e

  • actions-runner-osx-x64-2.304.0-noruntime-noexternals.tar.gz 0485941b1d8b330255a3dd3415d2f71bf773088fffbc119d91d9c94371b02ab5

  • actions-runner-osx-arm64-2.304.0-noruntime-noexternals.tar.gz db2d8ee498d92dacc54c6beac32d0c84ea6b00614bedc53290bef8ed74322c55

  • actions-runner-linux-x64-2.304.0-noruntime-noexternals.tar.gz 4b0baaec1612659d1b874abb8436df80856c0d239e2b995a6944b1b7ef77cacf

  • actions-runner-linux-arm64-2.304.0-noruntime-noexternals.tar.gz 9927347bd5a9da45e6d315b5355a43778c92828abd9798e11afbe1f1064ee076<!-- END SHA linux-arm64_noruntime_noex...

Read more

v2.303.0

10 Mar 11:07
e676c78
Compare
Choose a tag to compare

Features

  • Preparation work to support matrix context in output keys (#2477)
  • Add update certificates to ./run.sh if RUNNER_UPDATE_CA_CERTS env is set (#2471)
  • Bypass all proxies for all hosts if no_proxy='*' is set (#2395)
  • Change runner image to make user/folder align with ubuntu-latest hosted runner. (#2469)

Bugs

  • Exit on runner version deprecation error (#2299)
  • Runner service exit after consecutive re-try exits (#2426)

Misc

  • Replace deprecated command with environment file (#2429)
  • Make requests to Run service to renew job request (#2461)
  • Add job/step log upload to Result service (#2447, #2439)

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

  • actions-runner-win-arm64-2.303.0.zip f7d78a98b3d10d265066e85520862f062aeda0294453c58a2b21ebb747b08f09

  • actions-runner-osx-x64-2.303.0.tar.gz 8bd595568ceee5eb25576972bc8075b47c149b3fac7eb7873deed67944b45739

  • actions-runner-osx-arm64-2.303.0.tar.gz bbbac8011066b6cec93deb2365132b082b92287baaf34b5d9539e955ffe450ff

  • actions-runner-linux-x64-2.303.0.tar.gz e4a9fb7269c1a156eb5d5369232d0cd62e06bec2fd2b321600e85ac914a9cc73

  • actions-runner-linux-arm64-2.303.0.tar.gz 53f137fb4c00ac9906cbdf4b7c5c14e2e9555a2843d5c0171f6368207472464d

  • actions-runner-linux-arm-2.303.0.tar.gz cb55db5f6e8e2ab3db0c4236aad7d240e413a2b8aa7dffd24a288255dbb05fcf

  • actions-runner-win-x64-2.303.0-noexternals.zip 5d8c88927fbe2283d2fa325f806560f10a9850731c0b4c898ca2f7964fdd406e

  • actions-runner-win-arm64-2.303.0-noexternals.zip 6b0e5c89df2d387e6f56221896e83142c14a1afc626c710d373faeb05c7b177d

  • actions-runner-osx-x64-2.303.0-noexternals.tar.gz f78e3ad691924e78022754e0648d92a289435d5ede036237ddfd178b1df29f25

  • actions-runner-osx-arm64-2.303.0-noexternals.tar.gz acc1227c10820e12cd70ece24eee6a79442dd591c34f13443702254347d9b490

  • actions-runner-linux-x64-2.303.0-noexternals.tar.gz 022f3c71c0e0991415e8f895dc9aa22c16d32b3dd2d5f7423bbd97ae972416ac

  • actions-runner-linux-arm64-2.303.0-noexternals.tar.gz c4bec766c0f048a51193fb857e764f9270825738cf9eb0819a1b45824a3d7afc

  • actions-runner-linux-arm-2.303.0-noexternals.tar.gz 01ab11f1ed1a4065c77de4fa832533b4c2b51f6cac1a1430bf6258188df09000

  • actions-runner-win-x64-2.303.0-noruntime.zip 765a390e1241aa878be1d806bd449dce88348d114dca9a73e28c5ca42bc68b50

  • actions-runner-win-arm64-2.303.0-noruntime.zip f7f7a3b947a66b0b9290f5659d287962cee941c3bee3981eb81d8c5f7f0f74c1

  • actions-runner-osx-x64-2.303.0-noruntime.tar.gz 7de3a2b66ea77f757a6f27b94c4e6f4403df2b7e3be800cc38f2502dead63b34

  • actions-runner-osx-arm64-2.303.0-noruntime.tar.gz 8efdd164ddbc7ad0fe2bbe4dde35cc49a6b1263c993b3b0e03bfb8d1bdc840b6

  • actions-runner-linux-x64-2.303.0-noruntime.tar.gz 2634a6fd0f9f2402cfc186063b8e129bd4391f0aecc0a524a292e1623360d501

  • actions-runner-linux-arm64-2.303.0-noruntime.tar.gz e353d520ca2f24fe8685e83f74f3c153b5d0e44965d20433cb3a6fd57d7b865e

  • actions-runner-linux-arm-2.303.0-noruntime.tar.gz 01e150e8929926b8739c2e7fc873843d892a82c61635f2c118e00242309d78ae

  • actions-runner-win-x64-2.303.0-noruntime-noexternals.zip f208879cc1da7893bf911b7a601e3eb5648d2c86e04b880ae428465c679f8dbc

  • actions-runner-win-arm64-2.303.0-noruntime-noexternals.zip e1f382005c6b48eee23b704ae2819771d80f05732135c79b093b9889ef73d0c7

  • actions-runner-osx-x64-2.303.0-noruntime-noexternals.tar.gz 3f53b1a10f837c96e83b6d569dc2ecbcaa0dc79e4a4aee8ea2ddf71643f1d54b

  • actions-runner-osx-arm64-2.303.0-noruntime-noexternals.tar.gz f50cdf73ea09b1b5850032cf45c30e90e97e6fc3ecfcd81de68638282423b997

  • actions-runner-linux-x64-2.303.0-noruntime-noexternals.tar.gz fc4577472fef7dea377dcb4a7835ae274029db008fd0a6a0c03bf1ecfa189ee5

  • actions-runner-linux-arm64-2.303.0-noruntime-noexternals.tar.gz ec4cb5000a6d4d33ba29f565d950dc3382c6...

Read more

v2.302.1

15 Feb 21:20
Compare
Choose a tag to compare

Features

  • Add support for ghe.com domain (#2420)
  • Add docker cli to the runner image. (#2425)

Bugs

  • Fix URL construction bug for RunService (#2396)
  • Defer evaluation of a step's DisplayName until its condition is evaluated. (#2313)
  • Replace '(' and ')' with '[' and '] from OS.Description for fixing User-Agent header validation (#2288)

Misc

  • Bump dotnet sdk to latest version. (#2392)
  • Start calling run service for job completion (#2412, #2423)

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

  • actions-runner-win-arm64-2.302.1.zip 6a269f9ec1bf6243ab8c934a723028ac50620f0e85936d65620a8d195b3accb0

  • actions-runner-osx-x64-2.302.1.tar.gz cc061fc4ae62afcbfab1e18f1b2a7fc283295ca3459345f31a719d36480a8361

  • actions-runner-osx-arm64-2.302.1.tar.gz f78f4db37bb7ba80e6123cec0e3984d1f2bb3f8f3a16db679c42ef830e0981d3

  • actions-runner-linux-x64-2.302.1.tar.gz 3d357d4da3449a3b2c644dee1cc245436c09b6e5ece3e26a05bb3025010ea14d

  • actions-runner-linux-arm64-2.302.1.tar.gz cac05dc325a3fd86e0253bd5bda1831e1d550805c47d6e3cc6d248570ceb3b74

  • actions-runner-linux-arm-2.302.1.tar.gz cb9992e3853d95116ff73f9353b45d5134e315eb3c03b13fb6adb8651346411d

  • actions-runner-win-x64-2.302.1-noexternals.zip 5a3ca4712ff69a0d6fbf54d66b30f213ee2a627f1058de8d173dff029ce9d416

  • actions-runner-win-arm64-2.302.1-noexternals.zip 87e57b9330a58e2aaa801f8b1ad1c61036810768fe0203c4bd764af41f911ed6

  • actions-runner-osx-x64-2.302.1-noexternals.tar.gz b5ab75b6bf68dfdec8482620800d5f67622f73e05e96513ee7664657556a7f03

  • actions-runner-osx-arm64-2.302.1-noexternals.tar.gz cc3f3e10f8fe92c4ec2c26624bf47e59bb6afc786b19baf9ba63d69c3f385d15

  • actions-runner-linux-x64-2.302.1-noexternals.tar.gz afa8faa1b5daaa17dac7cefa0f3382fdcbf2caa4d2fe7b395a367dc34ed325a1

  • actions-runner-linux-arm64-2.302.1-noexternals.tar.gz 2c366f005ef29043b7a5cb6a57fb58fec1c5103437a54c7a8473ed37089ab913

  • actions-runner-linux-arm-2.302.1-noexternals.tar.gz 45ae81b5778091d172926af8c1cae503e88beec84672d632e0bd4c522ac013d1

  • actions-runner-win-x64-2.302.1-noruntime.zip efb536435de3846ed78ff274811fdc5f80e14d333998848adc77667213c00acf

  • actions-runner-win-arm64-2.302.1-noruntime.zip b99f00cc31db78c50351ab79fb0f55335e709e8d8fef943c90b3f63702e92323

  • actions-runner-osx-x64-2.302.1-noruntime.tar.gz 7a0f93836bcb09de14c9eae8d38111cf3e39f1a197a9b3a27af160bef6c5b5d1

  • actions-runner-osx-arm64-2.302.1-noruntime.tar.gz abd58d2b17e6e3d012c18d7e4b3fca2bf4696ce5c2db770ec8887160c985b9e9

  • actions-runner-linux-x64-2.302.1-noruntime.tar.gz 4bf45f5b1f22530e77331ca2771dd2365d9b31ea7b1ca5c075073717b90bb5da

  • actions-runner-linux-arm64-2.302.1-noruntime.tar.gz 42bdfeb2ae7492f3a5aa84d746da931ba216bf8e2d7c909d91195356f4a6dc07

  • actions-runner-linux-arm-2.302.1-noruntime.tar.gz 7f7be6b525cbde8bc96718af49a74391e71e755bed689c44b4383dccb26c7ab2

  • actions-runner-win-x64-2.302.1-noruntime-noexternals.zip 0e5d239ea881ddf5c3284974c8d1a0b92fcc23984f3110b7222c25fcaf9de988

  • actions-runner-win-arm64-2.302.1-noruntime-noexternals.zip 022822ac9d1a0e567356f4d4a4b01bad96746233c32c315ef1dfbb2ca0a4f803

  • actions-runner-osx-x64-2.302.1-noruntime-noexternals.tar.gz a0ba3d46ac542bf805c722daf4ab574b7b4e3182c265307dcd084f3154318fd7

  • actions-runner-osx-arm64-2.302.1-noruntime-noexternals.tar.gz 60a9b5ad71fafff9c36c20a2f6b36610ddaef758b66ea9c4a004839e08c6fd7b

  • actions-runner-linux-x64-2.302.1-noruntime-noexternals.tar.gz 49073a37b855b14b0ea53665ff5310f506f166a2e565e0057905c16c806463df

  • actions-runner-linux-arm64-2.302.1-noruntime-noexternals.tar.gz 5d94931a267410b5fb1293a7fa7a29ececa535aed48768ad4aa9cd8ea7aab8c6

  • actions-runner-linux-arm-2.302.1-noruntime-noexternals.tar.gz 2a8376c0c41e373d5f0648acdb67d8563866cca460450570f401c8cc99425c3e