Skip to content

Releases: ashb/runner

v2.309.0-airflow11

15 Sep 09:12
Compare
Choose a tag to compare

What's Changed

New Contributors

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

  • ...

Read more

v2.309.0-airflow10

14 Sep 09:14
Compare
Choose a tag to compare

What's Changed

New Contributors

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

  • actions-runner-win-arm64-2.309.0-airflow10.zip 390a694bde51601ffe8e772fbc0a81d153fac16cd289ad7dabe648032914081e

  • actions-runner-osx-x64-2.309.0-airflow10.tar.gz dde7d47a9eb91de58a606eb95215f4c4800d19f9319ea13ba26d6f23f84542ab

  • actions-runner-osx-arm64-2.309.0-airflow10.tar.gz 536fb495049a567d8ecebb685f898c71bbebf3a543ad71b4b63bddd254dfc236

  • actions-runner-linux-x64-2.309.0-airflow10.tar.gz 0d4890197f5f006cf509442762e462e1c092e0a01e8e844582541e4c3ed42201

  • actions-runner-linux-arm64-2.309.0-airflow10.tar.gz 2edc767a06dcb2e7338b5a8962b85e97f53bf9534a98ddde11c5217206077cb4

  • actions-runner-linux-arm-2.309.0-airflow10.tar.gz dadaea400134ae0e63f15e760c9ffba91ba54158f3cb529d30729694a2823aa0

  • actions-runner-win-x64-2.309.0-airflow10-noexternals.zip d9ad9abfe1f8502d3e60c159fc9fa543834bb7ce1f02b1ad0c82ce71d929673b

  • actions-runner-win-arm64-2.309.0-airflow10-noexternals.zip cd77b8b18fb2287f6f43dcc2259c2f820a3c18f32686bfe119cb41652030ab0f

  • actions-runner-osx-x64-2.309.0-airflow10-noexternals.tar.gz e451dad0f4fd3708cd10a6f6b47cbfcac56aa29ecfde5a8f3159ac328ec8cc03

  • actions-runner-osx-arm64-2.309.0-airflow10-noexternals.tar.gz e45311338af7f8a0fb747866e6c3ad951713f39714f295d33011633f13e6fd1c

  • ...

Read more

v2.309.0-airflow9

13 Sep 09:27
Compare
Choose a tag to compare

What's Changed

New Contributors

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

  • actions-runner-win-arm64-2.309.0-airflow9.zip 6a75ab80c4aad0a4ac2983d197c30959f1903433cd4459449d1028da536fd883

  • actions-runner-osx-x64-2.309.0-airflow9.tar.gz 578775aeb5dd208ab2e438ae90f6717543b3664fb84db6e0eb138d4058ece55a

  • actions-runner-osx-arm64-2.309.0-airflow9.tar.gz 62e29a60a8e164b2bae2cb43f87127a2d7fd75e03f325337643078deb6d26bb0

  • actions-runner-linux-x64-2.309.0-airflow9.tar.gz 4049b3fe4ac41e84c73ca6b38e718289e2e571a0b14d746f1ca48ce0e3446566

  • actions-runner-linux-arm64-2.309.0-airflow9.tar.gz 5687fe989630d5ad5c19775237727e65a42515cf2c85bd43edab85a9c84c518b

  • actions-runner-linux-arm-2.309.0-airflow9.tar.gz d8c7afcfc8ea05f7f79bfdd6203e89da4446dfa9be710797de9463bc8c0d7e18

  • actions-runner-win-x64-2.309.0-airflow9-noexternals.zip d63475e7e7e467f4ba01f650a6f39f05f13a5c50b051bf852845808f79096a22

  • actions-runner-win-arm64-2.309.0-airflow9-noexternals.zip d1da097e72f5aa2d2a28202c9414a909c5e48017a6665a235ea592ca821a28e0

  • actions-runner-osx-x64-2.309.0-airflow9-noexternals.tar.gz 0f1c12adf8f42093417eb06f94535bbbf0c87dfa5c5fd209249918ca53769be5

  • actions-runner-osx-arm64-2.309.0-airflow9-noexternals.tar.gz 0c17456e34e7de07f22346d23752c97a4bba1716150a1d4f23de3b1bfabb1252

  • actions-runner-linux-x64-2.309.0-a...

Read more

v2.309.0-airflow7

12 Sep 09:31
Compare
Choose a tag to compare

What's Changed

New Contributors

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

  • actions-runner-win-arm64-2.309.0-airflow7.zip 0a7ee6843d361bb2550519a15fda8bb866f9e4b32fcdbb9ac5fa36af85fa22f0

  • actions-runner-osx-x64-2.309.0-airflow7.tar.gz e38ed30f97c59ded66d8162b4c4a9bc1852499d24a652717f4002986e451f234

  • actions-runner-osx-arm64-2.309.0-airflow7.tar.gz c4b5a19b473c1b8d29f46f09d6d8dfe84dcd043722fde7716112ffff7dcaf59c

  • actions-runner-linux-x64-2.309.0-airflow7.tar.gz 246649ae0abdbc789f18d9cc1ab8bf9ba73ee77815abc856747f4d79af2dc90f

  • actions-runner-linux-arm64-2.309.0-airflow7.tar.gz 1faf497c3e6fbd827c0046f4afa365c83f33de3114e6ba52fc0832aa693ab9e7

  • actions-runner-linux-arm-2.309.0-airflow7.tar.gz 7c50c9253fc9ef5de9591d3658297cd0405208067fba027d32f725624b104416

  • actions-runner-win-x64-2.309.0-airflow7-noexternals.zip 82950a66f441d328a2dac0c9aaf8ea8ff5846a20890a549f12772baa0715567d

  • actions-runner-win-arm64-2.309.0-airflow7-noexternals.zip 5030d042f90b989ea0cab433515df4c0213a4f3ccaa009c38d86816b11dc477d

  • actions-runner-osx-x64-2.309.0-airflow7-noexternals.tar.gz 0ac3d7f330e653ba15c4f4f48e6ccdefc2e00fe240dbc5f313cadc1a9a13600d

  • actions-runner-osx-arm64-2.309.0-airflow7-noexternals.tar.gz 4c7c638f61aba39ad7665845fcef2a1bf09cd60760b94cc2ac7040cd2c54c23d

  • actions-runner-linux-x64-2.309.0-a...

Read more

v2.309.0-airflow6

11 Sep 09:12
Compare
Choose a tag to compare

What's Changed

New Contributors

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

  • actions-runner-win-arm64-2.309.0-airflow6.zip fd0497bc26e67644f55a32a6d6eb5e61bac67a08e48bf4cb68a94953495816fd

  • actions-runner-osx-x64-2.309.0-airflow6.tar.gz ce053308fbb0c19a07d29eda8c2b9a84a577bb3e07433d71b3ff486f563b3bc9

  • actions-runner-osx-arm64-2.309.0-airflow6.tar.gz 029863ea13353a85043bfeebda8a3d33a4a51791619c6774d85475cac3380332

  • actions-runner-linux-x64-2.309.0-airflow6.tar.gz 3799b8bd5dddd1a2bc4163037906a1b5bd13058efc8b7d0a7e1c933a8c99e956

  • actions-runner-linux-arm64-2.309.0-airflow6.tar.gz 3b948d32d47a90a281d594c24e2f70ec5479b0be072bfaf1072efef732aa93b2

  • actions-runner-linux-arm-2.309.0-airflow6.tar.gz ba6a351f61c112c3210bda4d8194e4db6f90571c55b6b15e0cb1478ea07ac6de

  • actions-runner-win-x64-2.309.0-airflow6-noexternals.zip abf967e3744275e5489ffbcbc279ff43ebd1eef519f625b8fb59b56a468fa0d2

  • actions-runner-win-arm64-2.309.0-airflow6-noexternals.zip 7b2c55a7eff0eab31ef35bc418887aa449be40a0466901096d11fb662c44df4f

  • actions-runner-osx-x64-2.309.0-airflow6-noexternals.tar.gz 6a38123b09f5fbc3665a50d0c373b9840bdc781c5e92a9a954b64df392791af2

  • actions-runner-osx-arm64-2.309.0-airflow6-noexternals.tar.gz ca89a234a71e104e740136185af710561cdd92449693781eaed033f21d2ad9ed

  • actions-runner-linux-x64-2.309.0-a...

Read more

v2.309.0-airflow5

10 Sep 11:02
Compare
Choose a tag to compare

What's Changed

New Contributors

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

  • actions-runner-win-arm64-2.309.0-airflow5.zip d38fc80a41de102a0d9fdd609ddc02e2f61ec0154b6469c99dc51772dc922d32

  • actions-runner-osx-x64-2.309.0-airflow5.tar.gz ab8912ac816563852db7c17ec518cd5e7f4606910bbe24b45a8e53a65a3e9318

  • actions-runner-osx-arm64-2.309.0-airflow5.tar.gz 7b10bc26034042097a15b48a2909c59c31b9df6523936a4398f22f0311b38789

  • actions-runner-linux-x64-2.309.0-airflow5.tar.gz ef7e91bfc4762259eae2bee2d1ee3e0fb5799c6f0bf10cddf8d113f81550653e

  • actions-runner-linux-arm64-2.309.0-airflow5.tar.gz a634993ddff9434d1de96773862396387c7c03ad5573219c3b2f92456cca4321

  • actions-runner-linux-arm-2.309.0-airflow5.tar.gz bf68235b8c3226a65e85d06f457fd8e8edbacebe3a4652e349bcf0c245bc6642

  • actions-runner-win-x64-2.309.0-airflow5-noexternals.zip 503fc1a1c6729c35a7d81eaa9b9ec594ba2802e503a0c61d336a30857fa08453

  • actions-runner-win-arm64-2.309.0-airflow5-noexternals.zip b267dd2fa9f8573b8761028fbae28ea249a1b62c22d38fb846af6361f14736b8

  • actions-runner-osx-x64-2.309.0-airflow5-noexternals.tar.gz adf24ff2b7cdec62d0f7cbe0974a1395df4820534eaa1763abaea990e92e20db

  • actions-runner-osx-arm64-2.309.0-airflow5-noexternals.tar.gz e6733b17ba45d034b8da55f0ec69ce27aaf89be4bd1b70aa05340ea42a79383c

  • actions-runner-linux-x64-2.309.0-a...

Read more

v2.304.0-airflow8

08 Jun 09:11
Compare
Choose a tag to compare

Features

Bugs

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

  • actions-runner-win-arm64-2.304.0-airflow8.zip cdce74fdf035f8145d8605cc7b06190b1c8ae84090a87c35b0712b97d15c3152

  • actions-runner-osx-x64-2.304.0-airflow8.tar.gz 97cb057ab234d2693c99439bece3bb45c64c830b1d75eb74dccfb90a2225ee2d

  • actions-runner-osx-arm64-2.304.0-airflow8.tar.gz 9c50d482911d777eab59f54bff875efaec47bd7b753576e8729cb43aa704e497

  • actions-runner-linux-x64-2.304.0-airflow8.tar.gz a5f2326d4efa1f5bbaf96bbc35df4a13bec33d3c02d9f9692b843eb945fc5385

  • actions-runner-linux-arm64-2.304.0-airflow8.tar.gz 3cddfa94adf867708d180d47d737f5e87ce1c3b8ad1c424d2b2bb4edcbce5f5b

  • actions-runner-linux-arm-2.304.0-airflow8.tar.gz 69d8f505f10ea986993d722a5756785d9ddf1f97f61db118bf2f3e49739f5dbb

  • actions-runner-win-x64-2.304.0-airflow8-noexternals.zip af25fce69c42376bfd63d20776533739183a3d4fee9c2087aec9e3e753793ca8

  • actions-runner-win-arm64-2.304.0-airflow8-noexternals.zip beca5bd6592e83790548de38bf167d4a0a2ccef962c25f89ddad51eca876b449

  • actions-runner-osx-x64-2.304.0-airflow8-noexternals.tar.gz 6a2ecb2347933bec7763b41fa38507a015b03569d0261629f69d154e8228c574

  • actions-runner-osx-arm64-2.304.0-airflow8-noexternals.tar.gz 9799469d5708a802be3e22cfd3aec058d5aead7ca97cc80ef65cf78cf71c5702

  • actions-runner-linux-x64-2.304.0-airflow8-noexternals.tar.gz 6420fd42ee48e0667b9c53d627490b318a62dda8b736b5f2f81d938a144794d7

  • actions-runner-linux-arm64-2.304.0-airflow8-noexternals.tar.gz 6467443ade351d5ef29ea0caf260602f353776b133bfecc73ddc2283f43fe647

  • actions-runner-linux-arm-2.304.0-airflow8-noexternals.tar.gz 57ffec1c1183bd868a8fca967f30437eb72cd735b88943bb6d7e9ee691c439b8

  • actions-runner-win-x64-2.304.0-airflow8-noruntime.zip 29d0efc97693445d937e21cd6e655546ce7a9c18ed08df9e63061521a6df2a56

  • actions-runner-win-arm64-2.304.0-airflow8-noruntime.zip f9f0016f44cab4b77d279604d25880da3853352b6a63262a58d3b72f6af84645

  • actions-runner-osx-x64-2.304.0-airflow8-noruntime.tar.gz 5d5e24c4096aae586ca93096aca889630784c3f31b2f40e6d86dfd7dce3456d9

  • actions-runner-osx-arm64-2.304.0-airflow8-noruntime.tar.gz 1578e6dfbf8d5c9f168fc115be6a7eacba7f029c3f71953da4a447e97f38488b

  • actions-runner-linux-x64-2.304.0-airflow8-noruntime.tar.gz a7045faab0bce01fae1ce6ff6184f7f0b41ceb68178492401019978a858fcc83

  • actions-runner-linux-arm64-2.304.0-airflow8-noruntime.tar.gz d5616773d1b588350536691db022b9d23246602609663567c77d38d3f9091c59

  • actions-runner-linux-arm-2.304.0-airflow8-noruntime.tar.gz b9171b452023b06f4c1bb4acbd5a44747e9351406e8dc02d2eaf3a720c53cb12

  • actions-runner-win-x64-2.304.0-airflow8-noruntime-noexternals.zip e41d27a46b29b67e00aad970000770dfaca8db54f58cd7164cfce74d233b8c6c

  • actions-runner-win-arm64-2.304.0-airflow8-noruntime-noexternals.zip c9cca7d58c5db88f173198e2fad926c28be84bf324a9891f71c5c727dc20f30a

  • actions-runner-osx-x64-2.304.0-airflow8-noruntime-noexternals.tar.gz 7563857405d8382e2f96a1c9ce9d502baff90399eeacc1ffa8c234f7b187843c

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

  • actions-runner...

Read more

v2.304.0-airflow7

07 Jun 09:14
Compare
Choose a tag to compare

Features

Bugs

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

  • actions-runner-win-arm64-2.304.0-airflow7.zip 41ea4734a1f73b194e764d26f6fbee33f0d26b15406813b65573511794af5e96

  • actions-runner-osx-x64-2.304.0-airflow7.tar.gz 2f7dff5c5378e5eeda4367519f1f92ff1c4b218b17204d14533211aba3c22b86

  • actions-runner-osx-arm64-2.304.0-airflow7.tar.gz caca2a628a4edc6e321d789366c436a31197a34805da3b3e938b44863b13f55c

  • actions-runner-linux-x64-2.304.0-airflow7.tar.gz ca363e7daa5e8636b32219fbd3727d500bf8ed71ad76f18c223fa38511fc5b58

  • actions-runner-linux-arm64-2.304.0-airflow7.tar.gz 16c38378a53008d78fd0f00b013d0f45177e5a48cf26779e67027e2fbefd02d4

  • actions-runner-linux-arm-2.304.0-airflow7.tar.gz 34cfa03dae0fa596d1104c47b8914ec7a27527d76d721d2288091d5ca00a4fad

  • actions-runner-win-x64-2.304.0-airflow7-noexternals.zip ae4290b14a5a473c757d0a0f9cbc06a52bc854a6fe75fe6a6d75948972a27084

  • actions-runner-win-arm64-2.304.0-airflow7-noexternals.zip 702015472e53ea2eee591dd3c570511d11ab704c87ec85bcc679ea0acc3b0377

  • actions-runner-osx-x64-2.304.0-airflow7-noexternals.tar.gz cb4a93564d7161c11c77cddfbd22f002eab1ef0bef8ca8f730f125a140d954fe

  • actions-runner-osx-arm64-2.304.0-airflow7-noexternals.tar.gz e216eda48be5d3a0d6140cce8a7c57c1f3472ba1d872587314a9e1753bbc45a8

  • actions-runner-linux-x64-2.304.0-airflow7-noexternals.tar.gz 034c25dd194a9757fe74e72516077c18898d8776456e5696992d8e30257a8cc1

  • actions-runner-linux-arm64-2.304.0-airflow7-noexternals.tar.gz ce8dba9507d534282b3c882efb3c443db225a8dfca4469328bb4ed160283b18b

  • actions-runner-linux-arm-2.304.0-airflow7-noexternals.tar.gz eb3515485d9d1a71af36e78c7d254fcd6f0bc81c48facd27a15c99ffe4c9b63b

  • actions-runner-win-x64-2.304.0-airflow7-noruntime.zip f2d6896b2b87fa4e07d74019265a4b39ed51b94302c478bea361e3d4084a1f1a

  • actions-runner-win-arm64-2.304.0-airflow7-noruntime.zip affc5e95289ae72b9165cf0fa556230874173d7e3ce9a096d00e657dd2ebee79

  • actions-runner-osx-x64-2.304.0-airflow7-noruntime.tar.gz 5272791a837fb062edcf77d1041d2a37bfd9aed7c1fe8303073758095897ee1e

  • actions-runner-osx-arm64-2.304.0-airflow7-noruntime.tar.gz 3f61be6ce723b5606016c09f72ac66ff97fe547caec8da6e647409c4ed84aaae

  • actions-runner-linux-x64-2.304.0-airflow7-noruntime.tar.gz 85ca263dceec8826a3f210efcc5971e540680e91a0b98dd94c3b8772b062e3a6

  • actions-runner-linux-arm64-2.304.0-airflow7-noruntime.tar.gz 05b2bc11ff3e93ff11eb44eac17f77bc558f1f8bb817d913834a45333a2a9a3d

  • actions-runner-linux-arm-2.304.0-airflow7-noruntime.tar.gz bb3035ca03bdd21184e1f230575912dc924bd750d7c7c883e95e295758f12fa9

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

  • actions-runner-win-arm64-2.304.0-airflow7-noruntime-noexternals.zip d74766a2ba9f05f89ac6518932bfcc329f5711eaf190636f0606fc77b9fe4468

  • actions-runner-osx-x64-2.304.0-airflow7-noruntime-noexternals.tar.gz 41d517a6874bc90981f5a514f2f080986066f5d7edbb91a8edecb133cb693f76

  • actions-runner-osx-arm64-2.304.0-airflow7-noruntime-noexternals.tar.gz 15f5ed790cce545c1fed78ca941122fa31194593f4fc8980948c2721088f89e5

  • actions-runner...

Read more

v2.304.0-airflow6

06 Jun 09:59
Compare
Choose a tag to compare

Features

Bugs

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

  • actions-runner-win-arm64-2.304.0-airflow6.zip b702d84a5f7930b7587ca81faeb7082ae925f450057b15f083a23e08ad27077d

  • actions-runner-osx-x64-2.304.0-airflow6.tar.gz ab7f5f36315a50f9e2025be53e8347722ab8e197692128d915c537ea4f7da1a6

  • actions-runner-osx-arm64-2.304.0-airflow6.tar.gz b7f53bd21f51d6015ef719c47daa2fce699cdf3eb0000a3136b4ebd44adf718b

  • actions-runner-linux-x64-2.304.0-airflow6.tar.gz 88e9440fbaff4cbcb2116f776c4b662a0a48858343d3385f24b77b5b9cb1e967

  • actions-runner-linux-arm64-2.304.0-airflow6.tar.gz e2eef42ed067ee64bf1126116e4d002e509655bbd0f040053008a61fb2d8890f

  • actions-runner-linux-arm-2.304.0-airflow6.tar.gz 78e128503d023315e20775aa96fcde6175ab7090a0e09bb86b0af5ca779dcf99

  • actions-runner-win-x64-2.304.0-airflow6-noexternals.zip 212db09ee3786eee6fdadf78c6debbeb086f89cdea172b3bc0e95fe26f8c440e

  • actions-runner-win-arm64-2.304.0-airflow6-noexternals.zip 2a8da7ef5258be1ed1f45e3d056e72816f064d6285549549f265f43b039af6bb

  • actions-runner-osx-x64-2.304.0-airflow6-noexternals.tar.gz 9d939453f326585a57ecd0a1ada0745614325545f381c50437e73b0c49d7971d

  • actions-runner-osx-arm64-2.304.0-airflow6-noexternals.tar.gz fb252d13d44816132e467f3c86c47eb9e43d22c7a70d1a60838cf02dbbf09a26

  • actions-runner-linux-x64-2.304.0-airflow6-noexternals.tar.gz fafd25690f910ee14e32cdc868076263b4eea9dd1dd4398b0b96354827bdb72c

  • actions-runner-linux-arm64-2.304.0-airflow6-noexternals.tar.gz 6fba10def551d1cbc8a8dfb19b8b53b7d9c854ec90e0ca7f64074748f7929b8e

  • actions-runner-linux-arm-2.304.0-airflow6-noexternals.tar.gz 18243ba7fa3dd3e1ba25bec9304334e72af9f1cf1ed70c8189f04212179149ae

  • actions-runner-win-x64-2.304.0-airflow6-noruntime.zip 08ac2afb9e637205ef924f8f8d3081792367749a2c82c15e6a18fb5ef790f5c5

  • actions-runner-win-arm64-2.304.0-airflow6-noruntime.zip 94375e3712ea4714f66c9e4bddf9ec1500fc943cb60ae22a96cbc037a37cbeee

  • actions-runner-osx-x64-2.304.0-airflow6-noruntime.tar.gz 7c53c722ec4ac00dbe68c71ebe78b9b7856bde28f066a21276dffb4710818c6c

  • actions-runner-osx-arm64-2.304.0-airflow6-noruntime.tar.gz 843004c2f9c756670c35b2a8cb64a8003943e670cc8578cc73d8916a20e0184c

  • actions-runner-linux-x64-2.304.0-airflow6-noruntime.tar.gz 265024eea09dafcdb3e304400f96fa89cbb57d142742161db4b180331ea2be01

  • actions-runner-linux-arm64-2.304.0-airflow6-noruntime.tar.gz c9663f82151370bdf292dde13ce00045e1f99e01f518bf17153c30e1ef614b1d

  • actions-runner-linux-arm-2.304.0-airflow6-noruntime.tar.gz 7b9eedcfe407600b9ae61129cbeced9f89af4eea991ed662ca55bb3605be1d39

  • actions-runner-win-x64-2.304.0-airflow6-noruntime-noexternals.zip ef0a0a072437b2a8db9e4674b1a9e5d6458ee79665e865ce70688ab41fccd58c

  • actions-runner-win-arm64-2.304.0-airflow6-noruntime-noexternals.zip 8bf28b185e15bbb1df82273df8f4e6f5ff048e62545e80564ea4702e7a8dc05a

  • actions-runner-osx-x64-2.304.0-airflow6-noruntime-noexternals.tar.gz a0eb225daacecb87f8dd1814dac331a98f9c1df4cb9bc3ecb1e5d8d78580188e

  • actions-runner-osx-arm64-2.304.0-airflow6-noruntime-noexternals.tar.gz 2ff7527f375fe3f019c8d3ad1fc5bb4437eae8894dde0473661fab3b06bd0048

  • actions-runner...

Read more

v2.304.0-airflow5

06 Jun 09:12
Compare
Choose a tag to compare

Features

Bugs

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

  • actions-runner-win-arm64-2.304.0-airflow5.zip 59feaedef864051b200d3fe3ca4350a87f0c0438dce5e5f80ea0e59c53cff637

  • actions-runner-osx-x64-2.304.0-airflow5.tar.gz bceb0cf76efe7222f9491dd496882fada24fe0ea9518d1862370a98ca1797ad7

  • actions-runner-osx-arm64-2.304.0-airflow5.tar.gz c050c7a29f5741a4f2e6b2defa5289761bb8b8b7b4d65529cf4da40e1bb31eae

  • actions-runner-linux-x64-2.304.0-airflow5.tar.gz 36be344ac2c91a6200f269d5e5557ae72061de513b58df91252621dd190d7dbc

  • actions-runner-linux-arm64-2.304.0-airflow5.tar.gz dbfc4a30bb0e4fd57d68e512162e9fd5f9d85b79a90438f17e4062c65391d411

  • actions-runner-linux-arm-2.304.0-airflow5.tar.gz 155e56d3eff4c060ebaab3d13a49994417d8d8a9b01498d54a9d4de5726b7fb3

  • actions-runner-win-x64-2.304.0-airflow5-noexternals.zip 7c41095974e1628e003d67edb5ed094b69eb9aa2424d00936ac79963079e9c57

  • actions-runner-win-arm64-2.304.0-airflow5-noexternals.zip 76dec8aef79fe728ad16441ab8220b71dbfa7d7f6935e7cd57ac51d53c3eb7ef

  • actions-runner-osx-x64-2.304.0-airflow5-noexternals.tar.gz 13fc371aebad954c881d92f4d7ed0b6215a145791a932f2c11fcf88bbd39d8ac

  • actions-runner-osx-arm64-2.304.0-airflow5-noexternals.tar.gz d881402a4269ac27aa36a3ee1139759318051943e2174ce7fc82a91c65b685b3

  • actions-runner-linux-x64-2.304.0-airflow5-noexternals.tar.gz d8019a76629d89d1001a984a378e05639c9913831a12c6aac488d094617ae3ca

  • actions-runner-linux-arm64-2.304.0-airflow5-noexternals.tar.gz e7e806fd0432155253343034ea9ca30fe40b4a5ee909df98be3f6ddba24a2fb4

  • actions-runner-linux-arm-2.304.0-airflow5-noexternals.tar.gz 9b19c1042ddbb0a953a69de408ed3a7c404b941ee62197e2eff5abf82a3207ea

  • actions-runner-win-x64-2.304.0-airflow5-noruntime.zip 27c2a118c92023d1206c68371c64d4795651af3da68d7048f4b4480eebbf5e98

  • actions-runner-win-arm64-2.304.0-airflow5-noruntime.zip c2b83be1b0e9bf8aa0ae3cd4a31a918d084a650080cf00293394bdf5e4ed4759

  • actions-runner-osx-x64-2.304.0-airflow5-noruntime.tar.gz ea4ff9d29caaa555e909d404d1e139ca67bde2162e735e5f6ed4ac0a8951f932

  • actions-runner-osx-arm64-2.304.0-airflow5-noruntime.tar.gz 4aa5756dff42961a6deb77cd37de19bed37c754111a1dd8a1f4065757308dc12

  • actions-runner-linux-x64-2.304.0-airflow5-noruntime.tar.gz 317a9b4d1981916e01c441f9b50f5d8d46aa043053bb25d97572d4840b8039ac

  • actions-runner-linux-arm64-2.304.0-airflow5-noruntime.tar.gz f8ae524e0686b8a913986478c89353294729b1108feef394f76be9f76e259b96

  • actions-runner-linux-arm-2.304.0-airflow5-noruntime.tar.gz 87d481273a149ab4efee63cc5d91de5090ef293bd82f54cf849bf995e7499530

  • actions-runner-win-x64-2.304.0-airflow5-noruntime-noexternals.zip af8134d1c4898e5902f4610bb7278ef146a9ce1367f42015d922aaa791dea053

  • actions-runner-win-arm64-2.304.0-airflow5-noruntime-noexternals.zip 3e8d0f2d13c401318b479475e4e409f405f603e15ed4cf4d85368bf8ac083a0d

  • actions-runner-osx-x64-2.304.0-airflow5-noruntime-noexternals.tar.gz 3245a68e0a621d9900a98a75a7e6f936ea60f35076aed96c3ba01f3c6d922c9e

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

  • actions-runner...

Read more