Skip to content

Releases: uazo/runner

v2.302.3

30 Jul 08:51

Choose a tag to compare

Features

  • Add Job Message size to both Worker and Listener logs for debugging (actions#1100)
  • Add notice annotation level (in addition to error and warning) and support more annotation fields (actions#1175)

Bugs

  • Remove the NODE_ICU_DATA environment variable that may cause conflicts with node within the runner. (actions#1060)
  • Handle cancelled jobs better to prevent orphaned processes (actions#1083)
  • No longer fail to remove a systemd service with svc.sh uninstall if the script had previously been run from the wrong location (actions#1135)
  • Send SIGKILL to the runner listener if it doesn't respond to SIGINT for 30 seconds
  • Match runner group name when configuring even if there's only a single runner group

Misc

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

OSX

# 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.302.3/actions-runner-osx-x64-2.302.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.302.3.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.302.3/actions-runner-linux-x64-2.302.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.302.3.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.302.3/actions-runner-linux-arm64-2.302.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.302.3.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.302.3/actions-runner-linux-arm-2.302.3.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.302.3.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.302.3.zip 82f801b3b522d88c4dd6a51b9663404f8686e549811b5ddb7a900610bc4569b7
  • actions-runner-osx-x64-2.302.3.tar.gz 2b5d2b79bfee8bed0d22ef42c22096622d17ce3a135cc920a5111bec6cffae79
  • actions-runner-linux-x64-2.302.3.tar.gz 760dcd2110752f619181b74fe3340e7f1de25590763275e5aecf87e86012bf12
  • actions-runner-linux-arm64-2.302.3.tar.gz 8660bd826a8fd5aa7c845c3e17e42a100cb2b530e3f7745b03ae26eb2ee09db9
  • actions-runner-linux-arm-2.302.3.tar.gz 6821150ca1a7bdb464fb7ddc9fe4485efbc89cdda42ebbf067040e86ff7aa59b

v2.302.2

29 Jul 11:32

Choose a tag to compare

Features

  • Add Job Message size to both Worker and Listener logs for debugging (actions#1100)
  • Add notice annotation level (in addition to error and warning) and support more annotation fields (actions#1175)

Bugs

  • Remove the NODE_ICU_DATA environment variable that may cause conflicts with node within the runner. (actions#1060)
  • Handle cancelled jobs better to prevent orphaned processes (actions#1083)
  • No longer fail to remove a systemd service with svc.sh uninstall if the script had previously been run from the wrong location (actions#1135)
  • Send SIGKILL to the runner listener if it doesn't respond to SIGINT for 30 seconds
  • Match runner group name when configuring even if there's only a single runner group

Misc

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

OSX

# 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.302.2/actions-runner-osx-x64-2.302.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.302.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/v2.302.2/actions-runner-linux-x64-2.302.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.302.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/v2.302.2/actions-runner-linux-arm64-2.302.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.302.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/v2.302.2/actions-runner-linux-arm-2.302.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.302.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-2.302.2.zip 619f1f3a5465c344525ef1a106f471d0ca115c601636b19e86eb5c36b65bd797
  • actions-runner-osx-x64-2.302.2.tar.gz 55cc744f01e96a2022e4eab52559cc283ef5c84b925e5a91e34d65bc216bbb85
  • actions-runner-linux-x64-2.302.2.tar.gz 702fa6940e335a7aa8b128b4a42cf0b8c1b51cb5543cb63d853e11cba022dc64
  • actions-runner-linux-arm64-2.302.2.tar.gz c55c571a56bd9e0d41a791520215bc2e0a8bd1695a8831a7e77b5a798cd92e08
  • actions-runner-linux-arm-2.302.2.tar.gz f8b8f851f22aae61ab8c146dc6aa0a423c84520ff0199ba4bf51bb8fd115609e

v2.302.1

27 Jul 19:56

Choose a tag to compare

Features

  • Add Job Message size to both Worker and Listener logs for debugging (actions#1100)
  • Add notice annotation level (in addition to error and warning) and support more annotation fields (actions#1175)

Bugs

  • Remove the NODE_ICU_DATA environment variable that may cause conflicts with node within the runner. (actions#1060)
  • Handle cancelled jobs better to prevent orphaned processes (actions#1083)
  • No longer fail to remove a systemd service with svc.sh uninstall if the script had previously been run from the wrong location (actions#1135)
  • Send SIGKILL to the runner listener if it doesn't respond to SIGINT for 30 seconds
  • Match runner group name when configuring even if there's only a single runner group

Misc

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

OSX

# 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.302.1/actions-runner-osx-x64-2.302.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.302.1.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.302.1/actions-runner-linux-x64-2.302.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.302.1.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.302.1/actions-runner-linux-arm64-2.302.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.302.1.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.302.1/actions-runner-linux-arm-2.302.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.302.1.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.302.1.zip 96aa6c90bb12b485fb203d12a365c995c02699650bb2acc593e75b7c8b6dcabe
  • actions-runner-osx-x64-2.302.1.tar.gz 6f4aab0bb43fc3012854ec49ec0d46b27cbdf903da864c5969e8059317b0bc7b
  • actions-runner-linux-x64-2.302.1.tar.gz c35b809b9abb3c3126156b963320be59c4a9386a2634551ed32da2c94d689f43
  • actions-runner-linux-arm64-2.302.1.tar.gz 7140f82e2b5b339a354d6e802a5cc89e60b4871dd2a9eacb58947acba5b5fcea
  • actions-runner-linux-arm-2.302.1.tar.gz d666140d1bf8bd3112f4e318838f51f04eb15e1d1409ccc0b3c3005ed8616497

v2.302.0

12 Jul 11:53

Choose a tag to compare

Features

  • Use GITHUB_TOKEN for ghcr.io containers if credentials are not provided (actions#990)

Bugs

  • Do not trucate error message from template evaluation (actions#1038)
  • Make FileShare ReadWrite (actions#1033)
  • Mask secrets with double-quotes when passed to docker command line (actions#1002)
  • Delete script files before replacing during update (actions#984)

Misc

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

OSX

# 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.302.0/actions-runner-osx-x64-2.302.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.302.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.302.0/actions-runner-linux-x64-2.302.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.302.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.302.0/actions-runner-linux-arm64-2.302.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.302.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.302.0/actions-runner-linux-arm-2.302.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.302.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.302.0.zip 5c2e8ffc4e84ff9691df8deed91cd95025d0f0baf87e6f018d835a21a1ea3dc1
  • actions-runner-osx-x64-2.302.0.tar.gz 5febb9eee16ba6e1c5db1047aa1bee90a04aff1de8f8f7e7624944fb830f9e45
  • actions-runner-linux-x64-2.302.0.tar.gz 606e7763db3a9e279ed8926539d555afd8ffa3d8e18e8f94a9008456e7a67975
  • actions-runner-linux-arm64-2.302.0.tar.gz 9acb90959d3c3fdc62a7068d3ba9dce44465e5cd65785ee07d419ba9d41d41c7
  • actions-runner-linux-arm-2.302.0.tar.gz d48b0e430be8da0840e1d3891183fab1cb9f5ce1683a1711633a328a49c8945c

v2.301.0

05 Jul 13:51

Choose a tag to compare

Features

  • Use GITHUB_TOKEN for ghcr.io containers if credentials are not provided (actions#990)

Bugs

  • Do not trucate error message from template evaluation (actions#1038)
  • Make FileShare ReadWrite (actions#1033)
  • Mask secrets with double-quotes when passed to docker command line (actions#1002)
  • Delete script files before replacing during update (actions#984)

Misc

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

OSX

# 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.301.0/actions-runner-osx-x64-2.301.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.301.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.301.0/actions-runner-linux-x64-2.301.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.301.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.301.0/actions-runner-linux-arm64-2.301.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.301.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.301.0/actions-runner-linux-arm-2.301.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.301.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.301.0.zip fd6f4f1973937b11b446ce00404c2b06fb1305c54f191eb80db94621fb589ec1
  • actions-runner-osx-x64-2.301.0.tar.gz 3fed8e31a799f462303e01904ddb9c3f33ffa9d6f341d53d023dd6481e4ececc
  • actions-runner-linux-x64-2.301.0.tar.gz 5dfc4113b8d83950a4ec7aac12547d8d7045cd3b4e69fad6337734ce55c72bba
  • actions-runner-linux-arm64-2.301.0.tar.gz 6a5e01fd46596c3ab39bc7baba372ea2a9d955ccc05c8780687963317fe5c0ee
  • actions-runner-linux-arm-2.301.0.tar.gz 0ec71b997c075c7c06c052438c0ac3b964ce934169a9d734aa06fabc6898b1c0

v2.300.0

02 Jul 15:26

Choose a tag to compare

Features

  • Use GITHUB_TOKEN for ghcr.io containers if credentials are not provided (actions#990)

Bugs

  • Do not trucate error message from template evaluation (actions#1038)
  • Make FileShare ReadWrite (actions#1033)
  • Mask secrets with double-quotes when passed to docker command line (actions#1002)
  • Delete script files before replacing during update (actions#984)

Misc

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

OSX

# 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.300.0/actions-runner-osx-x64-2.300.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.300.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.300.0/actions-runner-linux-x64-2.300.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.300.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.300.0/actions-runner-linux-arm64-2.300.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.300.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.300.0/actions-runner-linux-arm-2.300.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.300.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.300.0.zip 201812c76fd17077407474d999c7427e592d58a2fa0e6c5cc44ffdf08e2c44b0
  • actions-runner-osx-x64-2.300.0.tar.gz 9861b9a26be59cb9497e4c3f08dce41eec55ff3c838a249440b74d3a7de4cd94
  • actions-runner-linux-x64-2.300.0.tar.gz fb51ba609db810a332037a7b247f498e54ee84917abe9514f87f4f7e1cc605b7
  • actions-runner-linux-arm64-2.300.0.tar.gz 4be6c588f2afa6f3890db7664e5f830c24d9d632768835c412ed0505ff6a3648
  • actions-runner-linux-arm-2.300.0.tar.gz a5f0c59274a11c50a5bd5b5926075ca35438d2cbf75b3d6061d01db94429f899