Skip to content

v2.322.2

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 24 Jan 15:36
f84364e

Full Changelog: actions/runner@releases/m322...satmandu:runner:v2.322.2

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.322.2/actions-runner-win-x64-2.322.2.zip -OutFile actions-runner-win-x64-2.322.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.322.2.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/v2.322.2/actions-runner-win-arm64-2.322.2.zip -OutFile actions-runner-win-arm64-2.322.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.322.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/v2.322.2/actions-runner-osx-x64-2.322.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.322.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/v2.322.2/actions-runner-osx-arm64-2.322.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.322.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.322.2/actions-runner-linux-x64-2.322.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.322.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.322.2/actions-runner-linux-arm64-2.322.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.322.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.322.2/actions-runner-linux-arm-2.322.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.322.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.322.2.zip b70a7396cd35440a8b4747b95819fb30ce7578408dc7160e8c48071eed64b3ab
  • actions-runner-win-arm64-2.322.2.zip 3aae212071fcea62081175f7321d6aa950f595e2593d3604ad66500f980632d4
  • actions-runner-osx-x64-2.322.2.tar.gz cebbf3fb0e06bc5d09262eed9d391c3b635f327e1083090446872850a7b45f88
  • actions-runner-osx-arm64-2.322.2.tar.gz 6ced428eae7a3f4ea3a8f3d4704666d398402732aa12c334027e20deea0bbdfc
  • actions-runner-linux-x64-2.322.2.tar.gz 0e4d0c767c3d587f13c37c888f4bff54c46b3bee4939f7153823ee1691453a80
  • actions-runner-linux-arm64-2.322.2.tar.gz 57847ec02218d5c623527b9934968a77d33018f733d5bc04e972052994e69991
  • actions-runner-linux-arm-2.322.2.tar.gz c7e0b6250d3e9c15a22844cb4fe7efc0d85f9f60e8d7cee3a4e2a5997cc0a03c

What's Changed

Full Changelog: v2.322.1...v2.322.2