Skip to content

Releases: dfinity/runner

v2.321.0

02 Dec 11:16
1c41261
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@v2.320.0...v2.321.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.321.0/actions-runner-win-x64-2.321.0.zip -OutFile actions-runner-win-x64-2.321.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.321.0.zip", "$PWD")

Windows arm64

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.321.0/actions-runner-win-arm64-2.321.0.zip -OutFile actions-runner-win-arm64-2.321.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.321.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.321.0/actions-runner-osx-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.321.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.321.0/actions-runner-osx-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.321.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.321.0/actions-runner-linux-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.321.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.321.0/actions-runner-linux-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.321.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.321.0/actions-runner-linux-arm-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.321.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.321.0.zip df56873973144d40bd5100d1cb2e8906f01c06a419b25f7a23e2c48daee9ea38
  • actions-runner-win-arm64-2.321.0.zip 7b6998a754a16d45e53e6bd9518a29671e399306980b6253f6cf1ca059f74ba4
  • actions-runner-osx-x64-2.321.0.tar.gz e5c4b10ebbaff8035c68df38980c3adcb93753a63aa6bb662d0713461f436319
  • actions-runner-osx-arm64-2.321.0.tar.gz 7d4ebf4b983866364ccecdda6fed793f81c72f9c2cc8e696324374a8d2e9eb39
  • actions-runner-linux-x64-2.321.0.tar.gz 246ccebb5dd2fccda9ba207d363f726a81a3990f12a15d53e4b298602c4586da
  • actions-runner-linux-arm64-2.321.0.tar.gz 8f308c7f2a81e234b9dd751bf063f411ddf475e0efde060f1905c16e7f8cf45b
  • actions-runner-linux-arm-2.321.0.tar.gz 0faa5ef4bceb1f0c6af3776d0353348df5f790f6992ae94e104d6fd68ad27bb2

v2.320.0

12 Nov 21:47
Compare
Choose a tag to compare

What's Changed

  • Adding Snapshot additional mapping tokens actions#3468
  • Create launch httpclient using the right handler and setting actions#3476
  • Fix missing default user-agent for jitconfig runner actions#3473
  • Cleanup back-compat code for interpreting Run Service status codes actions#3456
  • Add runner or worker to the useragent actions#3457
  • Handle Error Body in Responses from Broker actions#3454
  • Fix issues for composite actions (Run Service flow) actions#3446
  • Trace GitHub RequestId to log actions#3442
  • Add jq, git, unzip and curl to default packages installed actions#3056
  • Add pid to user-agent and session owner actions#3432

Full Changelog: actions/runner@v2.319.1...v2.320.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.320.0/actions-runner-win-x64-2.320.0.zip -OutFile actions-runner-win-x64-2.320.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.320.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.320.0/actions-runner-win-arm64-2.320.0.zip -OutFile actions-runner-win-arm64-2.320.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.320.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.320.0/actions-runner-osx-x64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.320.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.320.0/actions-runner-osx-arm64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.320.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.320.0/actions-runner-linux-x64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.320.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.320.0/actions-runner-linux-arm64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.320.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.320.0/actions-runner-linux-arm-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.320.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.320.0.zip d50066a740da01fc121c229ce1402686c260ef748dc6050cfc3cb730b4c770e3
  • actions-runner-win-arm64-2.320.0.zip ca09740bd6b201a754f145f6037085fd8973db48527b8f1da923b7688ab5c071
  • actions-runner-osx-x64-2.320.0.tar.gz 3fea618682324b4478fc865b1c98088e7d042da149a087032d18e81990920a4e
  • actions-runner-osx-arm64-2.320.0.tar.gz 82355979b2df0b14c1f983c8f2325fe59288d37834d3caaf147f9736d1a5aa0a
  • actions-runner-linux-x64-2.320.0.tar.gz bb98dc39676c883d3feaf56dc9211553cd5838871efbc0977b16dd1836f501f4
  • actions-runner-linux-arm64-2.320.0.tar.gz 321815e66f5669accef67b66b8f6388fe5c79d733fdac0912d85410ebfa92aa1
  • actions-runner-linux-arm-2.320.0.tar.gz d14f14389734ebaa0be0668f1290a122fabe2bf894b3f5a4b46c37aa4473941a

v2.319.1

19 Aug 14:11
d5bf097
Compare
Choose a tag to compare

What's Changed

Full Changelog: actions/runner@v2.318.0...v2.319.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.319.1/actions-runner-win-x64-2.319.1.zip -OutFile actions-runner-win-x64-2.319.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.319.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.319.1/actions-runner-win-arm64-2.319.1.zip -OutFile actions-runner-win-arm64-2.319.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.319.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.319.1/actions-runner-osx-x64-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.319.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.319.1/actions-runner-osx-arm64-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.319.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.319.1/actions-runner-linux-x64-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.319.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.319.1/actions-runner-linux-arm64-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.319.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.319.1/actions-runner-linux-arm-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.319.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.319.1.zip b3974661d56397b61794e85e9e2dece6d5ac9b9c3289893ac3d49a109b40f98c
  • actions-runner-win-arm64-2.319.1.zip 5bcd6913df4ca3ae2203baf07ec83a670313cb0d4be1e3f44359cd5bb8accb48
  • actions-runner-osx-x64-2.319.1.tar.gz b3fca6adf0fbdb7faa8c23bbd3376879cd2b50803ae2ce1c2e9f830dc4a87729
  • actions-runner-osx-arm64-2.319.1.tar.gz 5dc97c0bea18e23a340c8576f07cb76bca45482e03d29b58f589f96a3b3ac447
  • actions-runner-linux-x64-2.319.1.tar.gz 5e210e53929d20147233b1a8bd0df8084e1df61643c6a2675a63e8caccc7708b
  • actions-runner-linux-arm64-2.319.1.tar.gz ad9f994775a28e6430aaa5c69f692148e7b46847582fa2b7d3443b5232548f12
  • actions-runner-linux-arm-2.319.1.tar.gz b849eb40819aab5992a30cbfbe8c0855ed10d03a21ca9fb7ecea7a9ef5663618

v2.318.0

29 Jul 11:22
6d97c4f
Compare
Choose a tag to compare

What's Changed

Full Changelog: actions/runner@v2.317.0...v2.318.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.318.0/actions-runner-win-x64-2.318.0.zip -OutFile actions-runner-win-x64-2.318.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.318.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.318.0/actions-runner-win-arm64-2.318.0.zip -OutFile actions-runner-win-arm64-2.318.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.318.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.318.0/actions-runner-osx-x64-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.318.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.318.0/actions-runner-osx-arm64-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.318.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.318.0/actions-runner-linux-x64-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.318.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.318.0/actions-runner-linux-arm64-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.318.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.318.0/actions-runner-linux-arm-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.318.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.318.0.zip dabd322ea4988a29d3dc13834203fa3917f49073366c4c9c5fd9e298d4f2f582
  • actions-runner-win-arm64-2.318.0.zip c1e772610f226db43d7130a8e27868c13dec79e59f655fc864afff679c57cea1
  • actions-runner-osx-x64-2.318.0.tar.gz fdfa2a08fdbaa78794da00c6f5064fe032c1717bd53d4b390986d9bf6e96ce10
  • actions-runner-osx-arm64-2.318.0.tar.gz 6412542a05aee5ee03dc31c16067162fb065b4d218bab072bba1cd42fc726662
  • actions-runner-linux-x64-2.318.0.tar.gz 759fe7b5f27dad5f77ecebe96fe02d237b4990802ebd50002d836082b01b0617
  • actions-runner-linux-arm64-2.318.0.tar.gz 10236db8956c7de3931a179fdd5e32f4ff1888f2440cb654873a3badc2d7e33a
  • actions-runner-linux-arm-2.318.0.tar.gz 576c2f686bf78a7afb3e35faf996ce6edb655a3bf0cd61827a4207ebe303c4c2

v2.317.0

16 Jul 18:55
Compare
Choose a tag to compare

What's Changed

Full Changelog: actions/runner@v2.316.1...v2.317.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.317.0/actions-runner-win-x64-2.317.0.zip -OutFile actions-runner-win-x64-2.317.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.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.317.0/actions-runner-win-arm64-2.317.0.zip -OutFile actions-runner-win-arm64-2.317.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.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.317.0/actions-runner-osx-x64-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.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.317.0/actions-runner-osx-arm64-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.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.317.0/actions-runner-linux-x64-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.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.317.0/actions-runner-linux-arm64-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.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.317.0/actions-runner-linux-arm-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.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.317.0.zip 4fb2e3d7e35e2ca55fd549f80b890ed553a84d5ba8eee02e84ab590c27701188
  • actions-runner-win-arm64-2.317.0.zip 9022607a9e239ab13522298e091fad6c3f11645ed9cfb433022c30d19bded2d8
  • actions-runner-osx-x64-2.317.0.tar.gz 96ba9568a05c542888a5592357f222e0285edeaeaa54ada9bc0408d8feb6eef9
  • actions-runner-osx-arm64-2.317.0.tar.gz 4ccd7afd20a4642ba1c59bda1908b2d97432d1be9a1918c9d05d29fa0f19e327
  • actions-runner-linux-x64-2.317.0.tar.gz 1f94ecfb0c4f995653636101b8f46f4005e267f087a9d9ce0a0f68c9b91210e6
  • actions-runner-linux-arm64-2.317.0.tar.gz c82c01587e6136d620d07e8c7b6ac4d128230430e2099af2811fee424f7c3f85
  • actions-runner-linux-arm-2.317.0.tar.gz 798bb5f746b830344b6bb1d7a79f2fded57ef829504a2c4d59766d2120e407d3

v2.317.0-hostnetwork

03 Jul 16:04
Compare
Choose a tag to compare

What's Changed

Full Changelog: actions/runner@v2.316.1...v2.317.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.317.0-hostnetwork/actions-runner-win-x64-2.317.0-hostnetwork.zip -OutFile actions-runner-win-x64-2.317.0-hostnetwork.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.0-hostnetwork.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.317.0-hostnetwork/actions-runner-win-arm64-2.317.0-hostnetwork.zip -OutFile actions-runner-win-arm64-2.317.0-hostnetwork.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.0-hostnetwork.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.317.0-hostnetwork/actions-runner-osx-x64-2.317.0-hostnetwork.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0-hostnetwork.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.317.0-hostnetwork/actions-runner-osx-arm64-2.317.0-hostnetwork.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0-hostnetwork.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.317.0-hostnetwork/actions-runner-linux-x64-2.317.0-hostnetwork.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0-hostnetwork.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.317.0-hostnetwork/actions-runner-linux-arm64-2.317.0-hostnetwork.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0-hostnetwork.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.317.0-hostnetwork/actions-runner-linux-arm-2.317.0-hostnetwork.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0-hostnetwork.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.317.0-hostnetwork.zip 3dda34d28e8e9e989677d65f8b852895081959d45de2759581533164ff996e92
  • actions-runner-win-arm64-2.317.0-hostnetwork.zip d01711eae10e5fc77b0247f0404d3974460f2b00be90ed3b61c2dcaac7bb8273
  • actions-runner-osx-x64-2.317.0-hostnetwork.tar.gz 6192f3a12a192fbc868a7233e13b2b31992aaeccdc7c2de7cdd47c91cb06f3e8
  • actions-runner-osx-arm64-2.317.0-hostnetwork.tar.gz d136a11888f438e3ffd92963fbe15eabe0aa1ac6effaedfa195091df1e155a36
  • actions-runner-linux-x64-2.317.0-hostnetwork.tar.gz 5ac2f022bc6285c829caf253f82e71b45d2cad901875d2fcf2bad6185e482e5a
  • actions-runner-linux-arm64-2.317.0-hostnetwork.tar.gz 9eca721aa7da9138a72531f7eab6470f467679653ce6d829e78a82522f9ce3f0
  • actions-runner-linux-arm-2.317.0-hostnetwork.tar.gz 335c42dd702f36c1190667d14e612058db118ab5e493a45826a38164ec442529

v2.317.0-podman9

21 Jun 19:04
Compare
Choose a tag to compare

What's Changed

Full Changelog: actions/runner@v2.316.1...v2.317.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.317.0-podman9/actions-runner-win-x64-2.317.0-podman9.zip -OutFile actions-runner-win-x64-2.317.0-podman9.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.0-podman9.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.317.0-podman9/actions-runner-win-arm64-2.317.0-podman9.zip -OutFile actions-runner-win-arm64-2.317.0-podman9.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.0-podman9.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.317.0-podman9/actions-runner-osx-x64-2.317.0-podman9.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0-podman9.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.317.0-podman9/actions-runner-osx-arm64-2.317.0-podman9.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0-podman9.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.317.0-podman9/actions-runner-linux-x64-2.317.0-podman9.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0-podman9.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.317.0-podman9/actions-runner-linux-arm64-2.317.0-podman9.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0-podman9.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.317.0-podman9/actions-runner-linux-arm-2.317.0-podman9.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0-podman9.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.317.0-podman9.zip cebd800658d53de2751e4c84b9f6b5e3255fca1e25a11f85ddeb6cf2ee475c02
  • actions-runner-win-arm64-2.317.0-podman9.zip 4cfdb815a914d106077f98a33b327b9ac9a1bbe9b412c2672930c626307dcb8e
  • actions-runner-osx-x64-2.317.0-podman9.tar.gz b536198d35c0ee0677954fb7c141947fc4b9024d77253e188562d49ac3025f62
  • actions-runner-osx-arm64-2.317.0-podman9.tar.gz e0fc4c66816fb46aa9be58abfed0de85fce621f04ae1b1229ea154f4437185a7
  • actions-runner-linux-x64-2.317.0-podman9.tar.gz b79bd3c43fba0d483c582497a611fbeae2b4a9646abfc387171d6a98f167fa3c
  • actions-runner-linux-arm64-2.317.0-podman9.tar.gz a5527e7c49001bd4b0884db0c2a800b62dac171d850a45498736d5b77c25485e
  • actions-runner-linux-arm-2.317.0-podman9.tar.gz df711adfb4f7e21295d141354c7658d9b503b209f04acd4c99ce18a2b4c3e2ba

v2.317.0-podman7

21 Jun 18:28
Compare
Choose a tag to compare

What's Changed

Full Changelog: actions/runner@v2.316.1...v2.317.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.317.0-podman7/actions-runner-win-x64-2.317.0-podman7.zip -OutFile actions-runner-win-x64-2.317.0-podman7.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.0-podman7.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.317.0-podman7/actions-runner-win-arm64-2.317.0-podman7.zip -OutFile actions-runner-win-arm64-2.317.0-podman7.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.0-podman7.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.317.0-podman7/actions-runner-osx-x64-2.317.0-podman7.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0-podman7.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.317.0-podman7/actions-runner-osx-arm64-2.317.0-podman7.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0-podman7.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.317.0-podman7/actions-runner-linux-x64-2.317.0-podman7.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0-podman7.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.317.0-podman7/actions-runner-linux-arm64-2.317.0-podman7.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0-podman7.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.317.0-podman7/actions-runner-linux-arm-2.317.0-podman7.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0-podman7.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.317.0-podman7.zip cb533ef1d6981a69a5033a29c4844f1d2ad1ea890559aa04fec09ff29c47b994
  • actions-runner-win-arm64-2.317.0-podman7.zip bca162444ca1db98c5af4394b9f0ef41ecd3f7bae844c418565a6465d23bbe69
  • actions-runner-osx-x64-2.317.0-podman7.tar.gz 1162d9ac973e7bd0af5bee2a796e424d06acca59d9133912a99d12630d5da4e9
  • actions-runner-osx-arm64-2.317.0-podman7.tar.gz 2ea514fdae2da12d0332c4b8a6b1ba092f35223625c8ca06e40dac2baa877e14
  • actions-runner-linux-x64-2.317.0-podman7.tar.gz 839e8b9a9889c166ec68252167f60d16716aec90894bb97a2e65aae36f3a5e3e
  • actions-runner-linux-arm64-2.317.0-podman7.tar.gz e18d7cfac158f3a42a91570d556c0e31a6199481254bcd3fcc9e5ad4b80449ef
  • actions-runner-linux-arm-2.317.0-podman7.tar.gz 83d2f6290e8902372988bfce0e286fea2b7dc440660d6198a4d4b37562188a72

v2.317.0-podman6

21 Jun 16:41
Compare
Choose a tag to compare

What's Changed

Full Changelog: actions/runner@v2.316.1...v2.317.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.317.0-podman6/actions-runner-win-x64-2.317.0-podman6.zip -OutFile actions-runner-win-x64-2.317.0-podman6.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.0-podman6.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.317.0-podman6/actions-runner-win-arm64-2.317.0-podman6.zip -OutFile actions-runner-win-arm64-2.317.0-podman6.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.0-podman6.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.317.0-podman6/actions-runner-osx-x64-2.317.0-podman6.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0-podman6.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.317.0-podman6/actions-runner-osx-arm64-2.317.0-podman6.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0-podman6.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.317.0-podman6/actions-runner-linux-x64-2.317.0-podman6.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0-podman6.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.317.0-podman6/actions-runner-linux-arm64-2.317.0-podman6.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0-podman6.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.317.0-podman6/actions-runner-linux-arm-2.317.0-podman6.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0-podman6.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.317.0-podman6.zip 4df3cbbd1e43772f51219b9386db38d6632ab006b8b30cfc728a8af2af1db853
  • actions-runner-win-arm64-2.317.0-podman6.zip 16db4c32dfb750627a859c0464b84cb8da3a614d85cd6b57343ea571487b84bb
  • actions-runner-osx-x64-2.317.0-podman6.tar.gz 942ada073c77eb79a8b6f21c23fdab0734e3b6ff44d96e8a3c6cf82695f3ac05
  • actions-runner-osx-arm64-2.317.0-podman6.tar.gz 570aa87b8d4ac573156ae75ec3b2f8e58b449e236116b92190cb0675a6e2d35a
  • actions-runner-linux-x64-2.317.0-podman6.tar.gz 6fca5c4f6bd7efc695638494889d061884521c4ac57c81b4e0be6a2ea6e8d131
  • actions-runner-linux-arm64-2.317.0-podman6.tar.gz 697c22dcbc42e64f5263a8e5af4f4c7d4e795fe7a34ab469b213cfa3b6bd6448
  • actions-runner-linux-arm-2.317.0-podman6.tar.gz ac9af0461d9b6a17afacd7c6fc02aee754e358a6295d408f79553251f8f24a27

v2.317.0-podman5

21 Jun 15:36
Compare
Choose a tag to compare

What's Changed

Full Changelog: actions/runner@v2.316.1...v2.317.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.317.0-podman5/actions-runner-win-x64-2.317.0-podman5.zip -OutFile actions-runner-win-x64-2.317.0-podman5.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.0-podman5.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.317.0-podman5/actions-runner-win-arm64-2.317.0-podman5.zip -OutFile actions-runner-win-arm64-2.317.0-podman5.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.0-podman5.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.317.0-podman5/actions-runner-osx-x64-2.317.0-podman5.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0-podman5.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.317.0-podman5/actions-runner-osx-arm64-2.317.0-podman5.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0-podman5.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.317.0-podman5/actions-runner-linux-x64-2.317.0-podman5.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0-podman5.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.317.0-podman5/actions-runner-linux-arm64-2.317.0-podman5.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0-podman5.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.317.0-podman5/actions-runner-linux-arm-2.317.0-podman5.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0-podman5.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.317.0-podman5.zip ad1187ba1208e39fabf787784ad462809ef35e702f7983e24bdd8bd33ac67cfb
  • actions-runner-win-arm64-2.317.0-podman5.zip 73c3d8d0f4d711c13a56274d9cce04c98f065065844a120a4ef9f723fb54b85c
  • actions-runner-osx-x64-2.317.0-podman5.tar.gz 7ac5e16583bd26f4f4374e5d224698b56319e79fef8654b242b6e70d3cf8a9a6
  • actions-runner-osx-arm64-2.317.0-podman5.tar.gz bc54dad41d3ec2ab6c63143c06227f0cd5bf3609016ae760a60b7d548c8b9796
  • actions-runner-linux-x64-2.317.0-podman5.tar.gz 912c7fc996a7c3bce3d03f7d865e3a6be9df750a0e59e57276f8888a28e3579e
  • actions-runner-linux-arm64-2.317.0-podman5.tar.gz b9de07a699e674298d14e3c0654f6ee124ad146c73a88232ee95882b489a798e
  • actions-runner-linux-arm-2.317.0-podman5.tar.gz 6339b4f317131e34e33ae51256d1b5c68baf9ba7f945a0fbe4b21d69ad8aa9f9