Skip to content

v2.309.0

Compare
Choose a tag to compare
@github-actions github-actions released this 07 Sep 16:42
bdfef34

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 de2cbc67d23eb3c479bc7e6c24abb74a589d8ce7f6c2aa1fc0bf4313b5e40137

  • actions-runner-linux-arm-2.309.0-noexternals.tar.gz 3a11f10e5a6ea0863ba2632dcb306f0b74b19847b3dfacc99f6b55caed686a87

  • actions-runner-win-x64-2.309.0-noruntime.zip 616ec4a8136904c5c86f14876e81021c4ee03a84fce4be5ec87f7ec0cdc8f592

  • actions-runner-win-arm64-2.309.0-noruntime.zip 458cb2c633ccee2bc43672df8e26f6e6ead45462dcb8077f8e8a2609cc3bc85e

  • actions-runner-osx-x64-2.309.0-noruntime.tar.gz 5a25714a62d1956a4fc4b15a57915a5c66105e7236705953f44389944c7b1060

  • actions-runner-osx-arm64-2.309.0-noruntime.tar.gz 24636abd7715d695a7759989fd73712613dfcb52859cf8aee4951e8ccb6ce404

  • actions-runner-linux-x64-2.309.0-noruntime.tar.gz 6d5fe6cd7572bff379c790baf7fdcf7e4264dac2cafa4afc831901a6a63b4781

  • actions-runner-linux-arm64-2.309.0-noruntime.tar.gz 94d01d7da1311064660e7199b9d50c06d6b9e9116950ba00732a1ceecddf9881

  • actions-runner-linux-arm-2.309.0-noruntime.tar.gz 96836653790426973a518270b6c8da6d1411635735ac2ce2b447c7e23ec2eb0d

  • actions-runner-win-x64-2.309.0-noruntime-noexternals.zip e64f9f7724dd281e9cb2446fcf821bd1be303e6a09933a061f20387f276b40c2

  • actions-runner-win-arm64-2.309.0-noruntime-noexternals.zip 6e38a5761d9f520ca08df3f20bca2e1d7aae0e24f25832799caa0bc807c47bcd

  • actions-runner-osx-x64-2.309.0-noruntime-noexternals.tar.gz a6ec43940746e996bf1a62d2d1eb429b9086704c46254ed24cebdb0283565879

  • actions-runner-osx-arm64-2.309.0-noruntime-noexternals.tar.gz 9273b0e0d6e22baaa6ca2d44b5092e1a139e97e4a7d95d1d8d5385d98acffdc3

  • actions-runner-linux-x64-2.309.0-noruntime-noexternals.tar.gz 8433fb0b94c7f29d0685fe548429f6d31ea8faa9f1eb8bded0e374b13cf047e6

  • actions-runner-linux-arm64-2.309.0-noruntime-noexternals.tar.gz e921dc47d179cd5a00d5a96978e5704fc6b211503020b5b0303cec8da1ae3f0e

  • actions-runner-linux-arm-2.309.0-noruntime-noexternals.tar.gz 2753ceb5badbabb915bb39fbf98b0959b37bee520ba344ac8d0d73ff70f66ef2