What's Changed
- Bump @types/node from 12.12.14 to 20.4.10 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2759
- Trace x-github-request-id when download action tarball. by @TingluoHuang in actions#2755
- Fix typo by @kyanny in actions#2741
- Bump prettier from 3.0.1 to 3.0.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2772
- Bump @types/node from 20.4.10 to 20.5.0 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2773
- Revert "Fixed a bug where a misplaced
=
character could bypass here… by @cory-miller in actions#2774 - Filter NODE_OPTIONS from env for file output by @cory-miller in actions#2775
- Bump @types/node from 20.5.0 to 20.5.1 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2781
- Update Docker Version in Images by @ajschmidt8 in actions#2694
- Bump @types/node from 20.5.1 to 20.5.4 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2789
- Bump @typescript-eslint/parser from 6.4.0 to 6.4.1 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2785
- Bump Microsoft.AspNet.WebApi.Client from 5.2.4 to 5.2.9 in /src by @dependabot in actions#2751
- Bump System.Buffers from 4.3.0 to 4.5.1 in /src by @dependabot in actions#2749
- Bump dotnet/runtime-deps from 6.0-jammy to 7.0-jammy in /images by @dependabot in actions#2745
- Remove need to manually compile JS binary for hashFiles utility by @vanZeben in actions#2770
- Revert "Bump dotnet/runtime-deps from 6.0-jammy to 7.0-jammy in /images" by @TingluoHuang in actions#2790
- Query runner by name on server side. by @TingluoHuang in actions#2771
- Bump typescript from 5.1.6 to 5.2.2 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2795
- Bump @types/node from 20.5.4 to 20.5.6 in /src/Misc/expressionFunc/hashFiles by @dependabot in actions#2796
- Bump Newtonsoft.Json from 13.0.1 to 13.0.3 in /src by @dependabot in actions#2797
- Support replacing runners in v2 flow by @luketomlinson in actions#2791
- Delegating handler for Http redirects by @paveliak in actions#2814
- Add references to the firewall requirements docs by @paveliak in actions#2815
- Create automated workflow that will auto-generate dotnet sdk patches by @vanZeben in actions#2776
- Fixes minor issues with using proper output varaibles by @vanZeben in actions#2818
- Throw NonRetryableException on GetNextMessage from broker as needed. by @TingluoHuang in actions#2828
- Mark action download failures as infra failures by @cory-miller in actions#2827
New Contributors
- @kyanny made their first contribution in actions#2741
- @ajschmidt8 made their first contribution in actions#2694
Full Changelog: actions/runner@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-airflow11/actions-runner-win-x64-2.309.0-airflow11.zip -OutFile actions-runner-win-x64-2.309.0-airflow11.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.309.0-airflow11.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-airflow11/actions-runner-win-arm64-2.309.0-airflow11.zip -OutFile actions-runner-win-arm64-2.309.0-airflow11.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.309.0-airflow11.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-airflow11/actions-runner-osx-x64-2.309.0-airflow11.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.309.0-airflow11.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-airflow11/actions-runner-osx-arm64-2.309.0-airflow11.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.309.0-airflow11.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-airflow11/actions-runner-linux-x64-2.309.0-airflow11.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.309.0-airflow11.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-airflow11/actions-runner-linux-arm64-2.309.0-airflow11.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.309.0-airflow11.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-airflow11/actions-runner-linux-arm-2.309.0-airflow11.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.309.0-airflow11.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-airflow11.zip e46501a1a8ad96220637700a47681a9983ef516f19d65421a6d083c65162b897
-
actions-runner-win-arm64-2.309.0-airflow11.zip c4db634fe6ac3d9fac4aef4ead8c868d5ea468928371decf19956fe9a536e915
-
actions-runner-osx-x64-2.309.0-airflow11.tar.gz 482b32c92632a36b30dfd716a0bdce368e3b2322e4b8dbcb2903625248a84c3d
-
actions-runner-osx-arm64-2.309.0-airflow11.tar.gz 8d719276a1681b39e14c6bd99c41a45cacd4f7a3f0027c54976730784c3597b6
-
actions-runner-linux-x64-2.309.0-airflow11.tar.gz e2b139f3af733a95e79d3a263df75acfc70c72064174d62b4c3af6981043c94f
-
actions-runner-linux-arm64-2.309.0-airflow11.tar.gz 8dd985fd07a7dfc22eff244f7f2751efbbf9de2343fd8cd253639d3864877cfb
-
actions-runner-linux-arm-2.309.0-airflow11.tar.gz e2d3e821f0d9a09720b2fb2910108c31e4847e594385bb8c323dfe085a7c40f1
-
actions-runner-win-x64-2.309.0-airflow11-noexternals.zip c6e9aa0584ea6f8360b039410665dbb691f43f2e58c0da756ecdfba144e37a20
-
actions-runner-win-arm64-2.309.0-airflow11-noexternals.zip 0f359c609f9b4edcde41ca722898d552a54e7e01e3b9b149d7826165bc2d85ef
-
actions-runner-osx-x64-2.309.0-airflow11-noexternals.tar.gz c1b93791dc69bcbbec2b5452b1ea3ae55d9eca3db784bade3009c86231dfb983
-
actions-runner-osx-arm64-2.309.0-airflow11-noexternals.tar.gz 1425f9271dd8c2f068c4124e3e0b99e0915ff1a85f0be71c11c111edf33bcf9b
-
actions-runner-linux-x64-2.309.0-airflow11-noexternals.tar.gz b920861ee1ce4bba5de78a4cb10791718a45e7f61c7a05bc18dc0373685c273f
-
actions-runner-linux-arm64-2.309.0-airflow11-noexternals.tar.gz 6ee1ecf28cf6c24f1f2fb9dc02e33f2c73df0b6941070a2ca512a66cc560e3d7
-
actions-runner-linux-arm-2.309.0-airflow11-noexternals.tar.gz 61457a65cd110143b4134c2616c7b462d041cabb5d697f6eb35bd3e11fbec5c7
-
actions-runner-win-x64-2.309.0-airflow11-noruntime.zip a1fdda87bb0e16989eca812e37de7ddc16a65ad70a841d133d9ff5570a3966e9
-
actions-runner-win-arm64-2.309.0-airflow11-noruntime.zip c4aa27e9ce081b39430dcf18a150990a6121fd0b4e6308aac6e502a60097c451
-
actions-runner-osx-x64-2.309.0-airflow11-noruntime.tar.gz 863b43cb6f8d037902ac426a6cff5df02fa7b6175ee5f0d7150042c49afcf34c
-
actions-runner-osx-arm64-2.309.0-airflow11-noruntime.tar.gz dde07199faa36e5b0e971d07cc7ac821592d336077c9ffad33ad22045f6e1f3b
-
actions-runner-linux-x64-2.309.0-airflow11-noruntime.tar.gz 09d71d7fdd9b6259e3219e36fce97550df90eb3542126f20ae46e34ef3f802a7
-
actions-runner-linux-arm64-2.309.0-airflow11-noruntime.tar.gz 5647c2a005f1b66feac2c2920d35e67ccdd05bd030479eea6e0627b63e64190d
-
actions-runner-linux-arm-2.309.0-airflow11-noruntime.tar.gz 677bc7fa6f69c1bc16d017d359e1f6ec8b161882be1c23d834570bc48c1f0f4e
-
actions-runner-win-x64-2.309.0-airflow11-noruntime-noexternals.zip 23ef152291ac69f29b231c20480276cfdb18b46282f1c2870c70489bb742f0ed
-
actions-runner-win-arm64-2.309.0-airflow11-noruntime-noexternals.zip 9744fca211e18e07bb63a2732e3447a3ed0cf96ed086125b4858c105c95c872d
-
actions-runner-osx-x64-2.309.0-airflow11-noruntime-noexternals.tar.gz 33ec7f53c393ee918dc6e388504a4120e81047ac0800e31b4065356e85abca12
-
actions-runner-osx-arm64-2.309.0-airflow11-noruntime-noexternals.tar.gz 4e8b212d895770bcb7adc6736c196b875ecfd159235c027565042fcfd4dc1fb5
-
actions-runner-linux-x64-2.309.0-airflow11-noruntime-noexternals.tar.gz d9ba44426de13fddff646c6f09ce4e611038cf708290ed2e89204a8158f05240
-
actions-runner-linux-arm64-2.309.0-airflow11-noruntime-noexternals.tar.gz 60e2060a780b7d1c34818a096be66d87ff331ecaf4a23104e4f9d85d25aaad6e
-
actions-runner-linux-arm-2.309.0-airflow11-noruntime-noexternals.tar.gz 877751acf1499b0eca5b58262d4e6af35d3784307afd15ce614f36f450d90c2f