Skip to content

Releases: dfinity/runner

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

v2.317.0-podman1

19 Jun 20:58
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-podman1/actions-runner-win-x64-2.317.0-podman1.zip -OutFile actions-runner-win-x64-2.317.0-podman1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.0-podman1.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-podman1/actions-runner-win-arm64-2.317.0-podman1.zip -OutFile actions-runner-win-arm64-2.317.0-podman1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.0-podman1.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-podman1/actions-runner-osx-x64-2.317.0-podman1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0-podman1.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-podman1/actions-runner-osx-arm64-2.317.0-podman1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0-podman1.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-podman1/actions-runner-linux-x64-2.317.0-podman1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0-podman1.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-podman1/actions-runner-linux-arm64-2.317.0-podman1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0-podman1.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-podman1/actions-runner-linux-arm-2.317.0-podman1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0-podman1.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-podman1.zip 99f078f6a1267aa7e0698bb11c49665f3de9aefc431ee0b7cbf8f4798dd3333e
  • actions-runner-win-arm64-2.317.0-podman1.zip 9078dc112e21d13758d50a18039d93624ddbc444b39074f9ce5b1e93053327ab
  • actions-runner-osx-x64-2.317.0-podman1.tar.gz 6b7ade706aeebdccd9bafeac2e9fcbac288aa92a4086955efa0e7d309395e1dc
  • actions-runner-osx-arm64-2.317.0-podman1.tar.gz 52d9646b44596b3f8120ca6f00b2fdff5ffa31d00c50abeaf1cef86d204c3326
  • actions-runner-linux-x64-2.317.0-podman1.tar.gz 33346bf90b67512e09983a2b6c737180b64903414ebe6570eafa87770807ca76
  • actions-runner-linux-arm64-2.317.0-podman1.tar.gz 0f921d0460446a8954d72faf59b8177184a856a4b155c14d63e5beea7f65ae96
  • actions-runner-linux-arm-2.317.0-podman1.tar.gz 6df2028ad1ad124c4e2f6c4c272241bcd8c384ec11e707c7b7108ef407ee63b1

v2.317.0-dfinity1

13 Jun 18:02
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-dfinity1/actions-runner-win-x64-2.317.0-dfinity1.zip -OutFile actions-runner-win-x64-2.317.0-dfinity1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.0-dfinity1.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-dfinity1/actions-runner-win-arm64-2.317.0-dfinity1.zip -OutFile actions-runner-win-arm64-2.317.0-dfinity1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.0-dfinity1.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-dfinity1/actions-runner-osx-x64-2.317.0-dfinity1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0-dfinity1.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-dfinity1/actions-runner-osx-arm64-2.317.0-dfinity1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0-dfinity1.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-dfinity1/actions-runner-linux-x64-2.317.0-dfinity1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0-dfinity1.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-dfinity1/actions-runner-linux-arm64-2.317.0-dfinity1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0-dfinity1.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-dfinity1/actions-runner-linux-arm-2.317.0-dfinity1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0-dfinity1.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-dfinity1.zip 9c16886d07f8219a8c48d4ca7f3c2a3697a31c482cf77ef4d2e695117c9d698f
  • actions-runner-win-arm64-2.317.0-dfinity1.zip 25ad294b9bdbf18a194ab13a72bd05eb9790d57f6aab6e1668117e2643d676e4
  • actions-runner-osx-x64-2.317.0-dfinity1.tar.gz 0a7f8d8efe6c0682ad68586d8e95457986429890f2ac67a5e969deae63fce973
  • actions-runner-osx-arm64-2.317.0-dfinity1.tar.gz 6cdf21a141d2a6c957ad69e0e40a2bff7f186d80905508a23fdf50444ff07303
  • actions-runner-linux-x64-2.317.0-dfinity1.tar.gz e1f5cc23b88dc0c6f2327ad2f9a700523c214af0f5279b857dfd246ae3363353
  • actions-runner-linux-arm64-2.317.0-dfinity1.tar.gz 42f5e2f1afc1ab1f7b13e5964b5dc6536ca2ce467d6e2b3f1ae89fc20f00f865
  • actions-runner-linux-arm-2.317.0-dfinity1.tar.gz 6cd23bf63d43b7f96e071566af046754ed34a74c7c1eae4c5d422fb21f5e36a1

v2.317.0-dfinity

13 Jun 16:19
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-dfinity/actions-runner-win-x64-2.317.0-dfinity.zip -OutFile actions-runner-win-x64-2.317.0-dfinity.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.0-dfinity.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-dfinity/actions-runner-win-arm64-2.317.0-dfinity.zip -OutFile actions-runner-win-arm64-2.317.0-dfinity.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.0-dfinity.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-dfinity/actions-runner-osx-x64-2.317.0-dfinity.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0-dfinity.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-dfinity/actions-runner-osx-arm64-2.317.0-dfinity.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0-dfinity.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-dfinity/actions-runner-linux-x64-2.317.0-dfinity.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0-dfinity.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-dfinity/actions-runner-linux-arm64-2.317.0-dfinity.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0-dfinity.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-dfinity/actions-runner-linux-arm-2.317.0-dfinity.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0-dfinity.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-dfinity.zip 99afc6c495487b40d03936668311815bc80665ace4279271df6d6e23bd062f88
  • actions-runner-win-arm64-2.317.0-dfinity.zip 22783d70e210002cb97bd70dc0530a46246cd3ee01fcf0aeb911c54d7e45e351
  • actions-runner-osx-x64-2.317.0-dfinity.tar.gz d2107e419edc26513ebf1d815d5df5f82e010e8a7b240dcf67c3467ebaf5ec31
  • actions-runner-osx-arm64-2.317.0-dfinity.tar.gz cf051f4300289e101598c5330ce6a1d3881f88b14ca3e51eefe4e3fde6b7e5a5
  • actions-runner-linux-x64-2.317.0-dfinity.tar.gz 1d5106351276f541f21bc58029686ffb93db2c63b2524fb40e5d1f57d8e3e931
  • actions-runner-linux-arm64-2.317.0-dfinity.tar.gz 0236b2c1e7f794775e68ad8f525c587e4d0429e86e23780a4225c5a6dfb0498a
  • actions-runner-linux-arm-2.317.0-dfinity.tar.gz 755aedcb1d76a6ab149891c771be57f27aa6e50daba347e1e6e5a600b297371d