Skip to content

Releases: dfinity/runner

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

v2.317.0-podman4

21 Jun 15:07
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-podman4/actions-runner-win-x64-2.317.0-podman4.zip -OutFile actions-runner-win-x64-2.317.0-podman4.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.0-podman4.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-podman4/actions-runner-win-arm64-2.317.0-podman4.zip -OutFile actions-runner-win-arm64-2.317.0-podman4.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.0-podman4.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-podman4/actions-runner-osx-x64-2.317.0-podman4.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0-podman4.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-podman4/actions-runner-osx-arm64-2.317.0-podman4.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0-podman4.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-podman4/actions-runner-linux-x64-2.317.0-podman4.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0-podman4.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-podman4/actions-runner-linux-arm64-2.317.0-podman4.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0-podman4.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-podman4/actions-runner-linux-arm-2.317.0-podman4.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0-podman4.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-podman4.zip f1e8b8b7f2fc91e408fdf108e49564951b9a5d42ac31953c9908b09750095a07
  • actions-runner-win-arm64-2.317.0-podman4.zip 4d5b8782fc84cf20a3e809c8676da166343163d003ffd4661e92fb5f3d502eef
  • actions-runner-osx-x64-2.317.0-podman4.tar.gz 822e0726cda3e7b1de356f75dfd3e2ec49775489eaee2d831e04767d41a3544b
  • actions-runner-osx-arm64-2.317.0-podman4.tar.gz 3335915f7adfcb25a84e8aeef10ffc8f3c4f82356dc41a4b126cc866ba7e3af0
  • actions-runner-linux-x64-2.317.0-podman4.tar.gz 92b1c51bf7b5a89f16c4ea789e524d1c77e552541456f0d9115d2cd8d191f703
  • actions-runner-linux-arm64-2.317.0-podman4.tar.gz a85b2ee36427ece6f716ea0c0ed610e7d85f477c4dbc9fdc592bab8c43e5c2e0
  • actions-runner-linux-arm-2.317.0-podman4.tar.gz 65a872cffb55bdd33fcf43f94226f5d739196fd1f40eb57fe192fefae93fd731

v2.317.0-podman3

20 Jun 18:23
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-podman3/actions-runner-win-x64-2.317.0-podman3.zip -OutFile actions-runner-win-x64-2.317.0-podman3.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.0-podman3.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-podman3/actions-runner-win-arm64-2.317.0-podman3.zip -OutFile actions-runner-win-arm64-2.317.0-podman3.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.0-podman3.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-podman3/actions-runner-osx-x64-2.317.0-podman3.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0-podman3.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-podman3/actions-runner-osx-arm64-2.317.0-podman3.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0-podman3.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-podman3/actions-runner-linux-x64-2.317.0-podman3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0-podman3.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-podman3/actions-runner-linux-arm64-2.317.0-podman3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0-podman3.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-podman3/actions-runner-linux-arm-2.317.0-podman3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0-podman3.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-podman3.zip 1ae748b44dc90f80f005b44f10861ce40a995255e9385479b378f21f75251a9d
  • actions-runner-win-arm64-2.317.0-podman3.zip e68859857aaa0e5e8da1faa3a5c8dcf46679ca20ed5018c34352795e37382359
  • actions-runner-osx-x64-2.317.0-podman3.tar.gz 2ad8d7976c0f1565ab9f316e249a70cd8f7e46c8145f1693de502bd6a354abc4
  • actions-runner-osx-arm64-2.317.0-podman3.tar.gz 9e88388e4ea2f802ada8f60eb64b8e46311350a1856b12ca582df030fa26d02d
  • actions-runner-linux-x64-2.317.0-podman3.tar.gz d1ee5c947117a48528940e9f1847a013705244e2bc0f19c17520f0f67f06f5d8
  • actions-runner-linux-arm64-2.317.0-podman3.tar.gz 32595eb6c11e48c05a656ad528a3ec5da17a63caf44e4dbe20fcd8ea863cdcc3
  • actions-runner-linux-arm-2.317.0-podman3.tar.gz 5e25798736a67c680de3e4e87b7c9b682ac58c350425aa6b5987a595b886fc07

v2.317.0-podman2

20 Jun 16:56
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-podman2/actions-runner-win-x64-2.317.0-podman2.zip -OutFile actions-runner-win-x64-2.317.0-podman2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.0-podman2.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-podman2/actions-runner-win-arm64-2.317.0-podman2.zip -OutFile actions-runner-win-arm64-2.317.0-podman2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.0-podman2.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-podman2/actions-runner-osx-x64-2.317.0-podman2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0-podman2.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-podman2/actions-runner-osx-arm64-2.317.0-podman2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0-podman2.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-podman2/actions-runner-linux-x64-2.317.0-podman2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0-podman2.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-podman2/actions-runner-linux-arm64-2.317.0-podman2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0-podman2.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-podman2/actions-runner-linux-arm-2.317.0-podman2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0-podman2.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-podman2.zip c48cd3d7f11cebb90c1a69c9d67e9401d1426573cb06c15bb74c5d2e443d8c20
  • actions-runner-win-arm64-2.317.0-podman2.zip e64aef1b3031c5590b644573e7ac25f91fcb4caa84ae2d10a4a0d3f93f2b10a2
  • actions-runner-osx-x64-2.317.0-podman2.tar.gz 327ce925986ac1e1ace6c30203c774d1fadaa6b3902cb8ea66c892bc08d9609c
  • actions-runner-osx-arm64-2.317.0-podman2.tar.gz c89fb2fc39176a1ed2afd7138c8ca58a946d0ca41fc05cdd8d72e98eec0ca4db
  • actions-runner-linux-x64-2.317.0-podman2.tar.gz 15a3d28ad1b43254d37b637e4a109a4c151f21d5ea2d3a521241ce92ebaeecf1
  • actions-runner-linux-arm64-2.317.0-podman2.tar.gz 65805290ecb5b2c6e9b16129bbaf7a55b3b3a0ef0bb5548ec47b1642b5f24a7c
  • actions-runner-linux-arm-2.317.0-podman2.tar.gz 81a07490b54c94e40005d64954efc0a8134b0c904315d968b5b92a377507143a