Skip to content

Releases: mevanlc/actions-runner

v12.335.0

Choose a tag to compare

@github-actions github-actions released this 29 Jun 04:04

What's Changed

New Contributors

Full Changelog: actions/runner@v2.334.0...v2.335.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:

# Windows x64
mkdir \actions-runner ; cd \actions-runner
Invoke-WebRequest -Uri https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-win-x64-12.335.0.zip -OutFile actions-runner-win-x64-12.335.0.zip
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-12.335.0.zip", "$PWD")
# Windows arm64
mkdir \actions-runner ; cd \actions-runner
Invoke-WebRequest -Uri https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-win-arm64-12.335.0.zip -OutFile actions-runner-win-arm64-12.335.0.zip
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-12.335.0.zip", "$PWD")
# OSX x64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-osx-x64-12.335.0.tar.gz
tar xzf ./actions-runner-osx-x64-12.335.0.tar.gz
# OSX arm64 (Apple silicon)
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-osx-arm64-12.335.0.tar.gz
tar xzf ./actions-runner-osx-arm64-12.335.0.tar.gz
# Linux x64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-linux-x64-12.335.0.tar.gz
tar xzf ./actions-runner-linux-x64-12.335.0.tar.gz
# Linux arm64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-linux-arm64-12.335.0.tar.gz
tar xzf ./actions-runner-linux-arm64-12.335.0.tar.gz
# Linux arm
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-linux-arm-12.335.0.tar.gz
tar xzf ./actions-runner-linux-arm-12.335.0.tar.gz

v12.334.2

Choose a tag to compare

@github-actions github-actions released this 31 May 16:44
# Windows x64
mkdir \actions-runner ; cd \actions-runner
Invoke-WebRequest -Uri https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-win-x64-12.334.2.zip -OutFile actions-runner-win-x64-12.334.2.zip
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-12.334.2.zip", "$PWD")
# Windows arm64
mkdir \actions-runner ; cd \actions-runner
Invoke-WebRequest -Uri https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-win-arm64-12.334.2.zip -OutFile actions-runner-win-arm64-12.334.2.zip
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-12.334.2.zip", "$PWD")
# OSX x64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-osx-x64-12.334.2.tar.gz
tar xzf ./actions-runner-osx-x64-12.334.2.tar.gz
# OSX arm64 (Apple silicon)
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-osx-arm64-12.334.2.tar.gz
tar xzf ./actions-runner-osx-arm64-12.334.2.tar.gz
# Linux x64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-linux-x64-12.334.2.tar.gz
tar xzf ./actions-runner-linux-x64-12.334.2.tar.gz
# Linux arm64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-linux-arm64-12.334.2.tar.gz
tar xzf ./actions-runner-linux-arm64-12.334.2.tar.gz
# Linux arm
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-linux-arm-12.334.2.tar.gz
tar xzf ./actions-runner-linux-arm-12.334.2.tar.gz

v12.334.1

Choose a tag to compare

@github-actions github-actions released this 09 May 07:49
# Windows x64
mkdir \actions-runner ; cd \actions-runner
Invoke-WebRequest -Uri https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-win-x64-12.334.1.zip -OutFile actions-runner-win-x64-12.334.1.zip
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-12.334.1.zip", "$PWD")
# Windows arm64
mkdir \actions-runner ; cd \actions-runner
Invoke-WebRequest -Uri https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-win-arm64-12.334.1.zip -OutFile actions-runner-win-arm64-12.334.1.zip
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-12.334.1.zip", "$PWD")
# OSX x64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-osx-x64-12.334.1.tar.gz
tar xzf ./actions-runner-osx-x64-12.334.1.tar.gz
# OSX arm64 (Apple silicon)
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-osx-arm64-12.334.1.tar.gz
tar xzf ./actions-runner-osx-arm64-12.334.1.tar.gz
# Linux x64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-linux-x64-12.334.1.tar.gz
tar xzf ./actions-runner-linux-x64-12.334.1.tar.gz
# Linux arm64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-linux-arm64-12.334.1.tar.gz
tar xzf ./actions-runner-linux-arm64-12.334.1.tar.gz
# Linux arm
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-linux-arm-12.334.1.tar.gz
tar xzf ./actions-runner-linux-arm-12.334.1.tar.gz

v12.334.0

Choose a tag to compare

@github-actions github-actions released this 09 May 06:07

What's Changed

New Contributors

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

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v12.334.0/actions-runner-win-arm64-12.334.0.zip -OutFile actions-runner-win-arm64-12.334.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-12.334.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/v12.334.0/actions-runner-osx-x64-12.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-12.334.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/v12.334.0/actions-runner-osx-arm64-12.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-12.334.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/v12.334.0/actions-runner-linux-x64-12.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-12.334.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/v12.334.0/actions-runner-linux-arm64-12.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-12.334.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/v12.334.0/actions-runner-linux-arm-12.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-12.334.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-12.334.0.zip 218b43ff988305ac2bf22b855ec13551d1aa74e7da98098a49fd792fb70d4793
  • actions-runner-win-arm64-12.334.0.zip cd9dc15847e3b51eb1d489e822740fa489f603af2c1f567c8af0bfb37303e526
  • actions-runner-osx-x64-12.334.0.tar.gz b0f324d70726d1e6a98da0c97b467d75f70f0a85dab06599b09d9a13b10647a7
  • actions-runner-osx-arm64-12.334.0.tar.gz cdf098adaf087711ecd888f256fd156e2d2438bdf8c3e823caac2e9df012b97b
  • actions-runner-linux-x64-12.334.0.tar.gz 584cab85dc4681d06870c718a513637ae60b00c8ea27a323fcb97928585f46f1
  • actions-runner-linux-arm64-12.334.0.tar.gz e85fd88041fc2e4b645caa491cab8f5bc97b116ecb85ac5647bd0032bf80112c
  • actions-runner-linux-arm-12.334.0.tar.gz e303da8f9f5dfc302dcd04dc21c04e7977b0ce31bb6f70cd273db019a913915e