Skip to content

Releases: FieldControl/runner

v1.1.0

27 Jun 03:01
1bf5d9d
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/v1.1.0/actions-runner-win-x64-1.1.0.zip -OutFile actions-runner-win-x64-1.1.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-1.1.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/v1.1.0/actions-runner-win-arm64-1.1.0.zip -OutFile actions-runner-win-arm64-1.1.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-1.1.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/v1.1.0/actions-runner-osx-x64-1.1.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-1.1.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/v1.1.0/actions-runner-osx-arm64-1.1.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-1.1.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/v1.1.0/actions-runner-linux-x64-1.1.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-1.1.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/v1.1.0/actions-runner-linux-arm64-1.1.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-1.1.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/v1.1.0/actions-runner-linux-arm-1.1.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-1.1.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-1.1.0.zip <WIN_X64_SHA>
  • actions-runner-win-arm64-1.1.0.zip <WIN_ARM64_SHA>
  • actions-runner-osx-x64-1.1.0.tar.gz <OSX_X64_SHA>
  • actions-runner-osx-arm64-1.1.0.tar.gz <OSX_ARM64_SHA>
  • actions-runner-linux-x64-1.1.0.tar.gz 6e489b5044427c03bd41da2e12a100cf6209e86b0d42bfde36f18cdde26abbaf
  • actions-runner-linux-arm64-1.1.0.tar.gz b61e57290cfc13ee57dda90d26a907b21938866bba33d7320a16570c4512c144
  • actions-runner-linux-arm-1.1.0.tar.gz b531c3d45cb3436fa9d922c0e991c8b865b11ef62ed0ebe42dc51e3e8862f992

v1.0.2

23 Feb 02:11
7be6a1d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@v2.311.0...v2.312.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/v1.0.2/actions-runner-win-x64-1.0.2.zip -OutFile actions-runner-win-x64-1.0.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-1.0.2.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/v1.0.2/actions-runner-win-arm64-1.0.2.zip -OutFile actions-runner-win-arm64-1.0.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-1.0.2.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/v1.0.2/actions-runner-osx-x64-1.0.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-1.0.2.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/v1.0.2/actions-runner-osx-arm64-1.0.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-1.0.2.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/v1.0.2/actions-runner-linux-x64-1.0.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-1.0.2.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/v1.0.2/actions-runner-linux-arm64-1.0.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-1.0.2.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/v1.0.2/actions-runner-linux-arm-1.0.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-1.0.2.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-1.0.2.zip UNSUPORTED
  • actions-runner-win-arm64-1.0.2.zip UNSUPORTED
  • actions-runner-osx-x64-1.0.2.tar.gz UNSUPORTED
  • actions-runner-osx-arm64-1.0.2.tar.gz UNSUPORTED
  • actions-runner-linux-x64-1.0.2.tar.gz 76e746e5b4ee4dcbbdd3a8fbd20863bcd6375c5ce4251c916d8fb6ec9277fb9b
  • actions-runner-linux-arm64-1.0.2.tar.gz fb85489ebb9d147496aeed14f8d81ee016a6b216a5334544669881e333119bb6
  • actions-runner-linux-arm-1.0.2.tar.gz 575ac6c614a5025e31664158e9f97fa99df40906a1e23a2420c57b3fecebf0d7

v1.0.1

27 Jan 09:33
34dea7e
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@v2.311.0...v2.312.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/v1.0.1/actions-runner-win-x64-1.0.1.zip -OutFile actions-runner-win-x64-1.0.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-1.0.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/v1.0.1/actions-runner-win-arm64-1.0.1.zip -OutFile actions-runner-win-arm64-1.0.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-1.0.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/v1.0.1/actions-runner-osx-x64-1.0.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-1.0.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/v1.0.1/actions-runner-osx-arm64-1.0.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-1.0.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/v1.0.1/actions-runner-linux-x64-1.0.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-1.0.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/v1.0.1/actions-runner-linux-arm64-1.0.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-1.0.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/v1.0.1/actions-runner-linux-arm-1.0.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-1.0.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-1.0.1.zip UNSUPORTED
  • actions-runner-win-arm64-1.0.1.zip UNSUPORTED
  • actions-runner-osx-x64-1.0.1.tar.gz UNSUPORTED
  • actions-runner-osx-arm64-1.0.1.tar.gz UNSUPORTED
  • actions-runner-linux-x64-1.0.1.tar.gz a5e99d9cf3637a39d0c23af9cd698c0796e0fad0c0a060143117f3c5969d6165
  • actions-runner-linux-arm64-1.0.1.tar.gz 651a908372308300795e146166f7e4a30c5224b0c9199ead6e1ec7bf05205fa0
  • actions-runner-linux-arm-1.0.1.tar.gz 17a70b9bab5cbd66c226bab340106451ed8db216c2ebe984b716403a8fe08199

v1.0.0

17 Jan 01:47
7e1acd7
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@v2.311.0...v2.312.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/v1.0.0/actions-runner-win-x64-1.0.0.zip -OutFile actions-runner-win-x64-1.0.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-1.0.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/v1.0.0/actions-runner-win-arm64-1.0.0.zip -OutFile actions-runner-win-arm64-1.0.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-1.0.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/v1.0.0/actions-runner-osx-x64-1.0.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-1.0.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/v1.0.0/actions-runner-osx-arm64-1.0.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-1.0.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/v1.0.0/actions-runner-linux-x64-1.0.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-1.0.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/v1.0.0/actions-runner-linux-arm64-1.0.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-1.0.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/v1.0.0/actions-runner-linux-arm-1.0.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-1.0.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-1.0.0.zip UNSUPORTED
  • actions-runner-win-arm64-1.0.0.zip UNSUPORTED
  • actions-runner-osx-x64-1.0.0.tar.gz UNSUPORTED
  • actions-runner-osx-arm64-1.0.0.tar.gz UNSUPORTED
  • actions-runner-linux-x64-1.0.0.tar.gz 6423b9cc13f099e32c46cd08b7442ebaf325dc991d2352a3e3e3ec860af95fcc
  • actions-runner-linux-arm64-1.0.0.tar.gz 64de83f3dc4a47e5b76f725b96b704c8a6f34d40e321298398ad7c6425ec3ba3
  • actions-runner-linux-arm-1.0.0.tar.gz a84a429abca651cf8f53dda90395553b2625ef4e403af6267538a737242cb23a