Skip to content

v2.314.1

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 09 Oct 14:53
· 100 commits to 015c6932fb509155533a9d2bb59ea8ede7cd9e06 since this release

What's Changed

New Contributors

Full Changelog: v3.313.0...v3.314.1

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/mattrwi/runner/releases/download/v2.314.1/actions-runner-win-x64-2.314.1.zip -OutFile actions-runner-win-x64-2.314.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.314.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/mattrwi/runner/releases/download/v2.314.1/actions-runner-win-arm64-2.314.1.zip -OutFile actions-runner-win-arm64-2.314.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.314.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/mattrwi/runner/releases/download/v2.314.1/actions-runner-osx-x64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.314.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/mattrwi/runner/releases/download/v2.314.1/actions-runner-osx-arm64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.314.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/mattrwi/runner/releases/download/v2.314.1/actions-runner-linux-x64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.314.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/mattrwi/runner/releases/download/v2.314.1/actions-runner-linux-arm64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.314.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/mattrwi/runner/releases/download/v2.314.1/actions-runner-linux-arm-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.314.1.tar.gz

[Experimental] Linux s390x

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/mattrwi/runner/releases/download/v2.314.1/actions-runner-linux-s390x-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-s390x-2.314.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.314.1.zip 6da173b576d42e0c07dea07c6a4effeed12fb0e8924b4f593469ab5133b9feae
  • actions-runner-win-arm64-2.314.1.zip bdf49fe80df63ea3095c422396ccd785af6e4fa5eef924f07787c6ebbf19d80a
  • actions-runner-osx-x64-2.314.1.tar.gz 0f164697d725d13b1ec97509f8a9300d3f0ff9d36c8bc2e170781e0a1d8f7efa
  • actions-runner-osx-arm64-2.314.1.tar.gz 08295cb792963a73af1e0c67d70bd62f3962e651fd2be495a4bd41626de89880
  • actions-runner-linux-x64-2.314.1.tar.gz a05bca39d889b7dd401ad9f648165c975314734e03cd502eea99fe1031c61b40
  • actions-runner-linux-arm64-2.314.1.tar.gz fb9aa1572232fd929616769fd1d3d4c15f61d9e2ec954ac6df1a4a017c2c0540
  • actions-runner-linux-arm-2.314.1.tar.gz 32d093ffbe28ec26d05484e0d9be59370c4349af8954268bf94958496b1505a7
  • actions-runner-linux-s390x-2.314.1.tar.gz 3d7e170a4eec49e0a126fc949a886bad08ef1f799bb93d09cf78c7d60e1a1685