Skip to content

Releases: mercari/runner

v2.286.1

24 Jan 05:40

Choose a tag to compare

Features

  • N/A

Bugs

  • Fix breaking change in dotnet 6 around globalization-invariant. (actions#1609)

Misc

  • N/A

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.286.1/actions-runner-win-x64-2.286.1.zip -OutFile actions-runner-win-x64-2.286.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.286.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.286.1/actions-runner-osx-x64-2.286.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.286.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.286.1/actions-runner-linux-x64-2.286.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.286.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.286.1/actions-runner-linux-arm64-2.286.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.286.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.286.1/actions-runner-linux-arm-2.286.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.286.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.286.1.zip 659713a630b57185dba55dc82793d8ce3690cdc3ac541af40cdc28df2af9e67f

  • actions-runner-osx-x64-2.286.1.tar.gz 476140025386a44f4327d3d82112c9d318d6f7f0eb1c6f921d8e02d931e669b5

  • actions-runner-linux-x64-2.286.1.tar.gz c5fc873dd089c612f460bd1d8fa51995d5d437507ccaea202428283de0a2ee93

  • actions-runner-linux-arm64-2.286.1.tar.gz 4545d2abbb1a9961fc84b7b81429d4d6780ffdfcc9e2bf80cc27977e212f996c

  • actions-runner-linux-arm-2.286.1.tar.gz d7f4425c8f8f1a4a59547fa64252d0c8aed774d863293d29584e00b8c1ad1f27

  • actions-runner-win-x64-2.286.1-noexternals.zip d89170d5d6b71a97c630c2dfb6a12765f337850c2132975714fe36d856ff4ee4

  • actions-runner-osx-x64-2.286.1-noexternals.tar.gz 658baf33a9d7e41b30125968c050663211c6d5a6271dadb2df1dddc6c1804ade

  • actions-runner-linux-x64-2.286.1-noexternals.tar.gz 961f4878423ddaa43a5e5fa079cb823c25a41a2dae89ef190d8346ca677854fc

  • actions-runner-linux-arm64-2.286.1-noexternals.tar.gz d71ad0bf26b913f078814f3d1ea86fa0601a8878466cfabdf0c918e8065e7173

  • actions-runner-linux-arm-2.286.1-noexternals.tar.gz 60a6c811080d09c8320a1c8bf55455c69953f7a746668f80f94b70b734bf1abd

  • actions-runner-win-x64-2.286.1-noruntime.zip 0a41140e90b02b598a6a57328d0177477aae25ed5bc57b6ae40dfe3ab5408e42

  • actions-runner-osx-x64-2.286.1-noruntime.tar.gz 0ea0159c98121c75e4532139d441dc21b19166a11215018b82956906f0f7d73c

  • actions-runner-linux-x64-2.286.1-noruntime.tar.gz 6d0938137fa9ecab3493107375269713c378314da9b644607830798be8a9dbe8

  • actions-runner-linux-arm64-2.286.1-noruntime.tar.gz 1aa9d7f04e809d66b80e599ab45ce1c16ae728fa4531c5d160d0b0c996729b38

  • actions-runner-linux-arm-2.286.1-noruntime.tar.gz 69d70b021068858538019773e419b60e8dc79f183ba4e4bd47c5ef417bdf8f90

  • actions-runner-win-x64-2.286.1-noruntime-noexternals.zip 40e3b41ac815a14f2a6d48393118b104634123f95e6e83561d52267a13f04071

  • actions-runner-osx-x64-2.286.1-noruntime-noexternals.tar.gz bb43ee5c70fe50d8a94c1ded48ca181a92baf67d0225e207993ba6578bbcf3d9

  • actions-runner-linux-x64-2.286.1-noruntime-noexternals.tar.gz 1c3171f93142c86c7b4a00b69d86a688860eb1fb09ac279693065085a4ca410d

  • actions-runner-linux-arm64-2.286.1-noruntime-noexternals.tar.gz a76b8aee44b7502ba9a4685843119fa3359bda92d6b7ad9f3243740347511c69

  • actions-runner-linux-arm-2.286.1-noruntime-noexternals.tar.gz bdb73c793166ae6231662b6cd7bf5dee9acc572dfb4b70712e6236501f0a7465

v2.285.0-mercari-1

17 Dec 06:51

Choose a tag to compare

Features

  • Print source of secret in runs (Actions/Dependabot/None) actions#1411
  • Support node.js 16 and bump node.js 12 version actions#1439

Bugs

  • Fix a bug where local node action would crash in post-steps actions#1481

Misc

  • Use docker host network (for GKE/ephemeral runners) #3
  • Add telemetry around runner update process. actions#1497
  • Improve telemetry to better diagnose runner configuration issues actions#1487
  • Clean up dependencies actions#1470

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.285.0-mercari-1/actions-runner-win-x64-2.285.0-mercari-1.zip -OutFile actions-runner-win-x64-2.285.0-mercari-1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.285.0-mercari-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.285.0-mercari-1/actions-runner-osx-x64-2.285.0-mercari-1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.285.0-mercari-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.285.0-mercari-1/actions-runner-linux-x64-2.285.0-mercari-1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.285.0-mercari-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.285.0-mercari-1/actions-runner-linux-arm64-2.285.0-mercari-1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.285.0-mercari-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.285.0-mercari-1/actions-runner-linux-arm-2.285.0-mercari-1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.285.0-mercari-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.285.0-mercari-1.zip a63a147e4423dcb7b5fabd1a8c96e0dd7687c56b5d8533848fd2cdd58da4bb99
  • actions-runner-osx-x64-2.285.0-mercari-1.tar.gz 59ee90abe6b36572dc999294b8d811c67e7fe6f004a039829d8074331d5c620f
  • actions-runner-linux-x64-2.285.0-mercari-1.tar.gz 9d51ff49b8b91cd9f31382943cb85051a608474a593b9312da8369353635d135
  • actions-runner-linux-arm64-2.285.0-mercari-1.tar.gz dd240e1f6478d54f00ef37d9e9b03814f7a24c2c41d6948b9d46aefbf0fce1ac
  • actions-runner-linux-arm-2.285.0-mercari-1.tar.gz 4af9ba749f74e0c30685e551242b9fa352578f2518aaaec37bf5ea25280cf14c