Releases: satmandu/runner
v2.323.1
What's Changed
- Update dotnet sdk to latest version @9.0.202 by @github-actions in #14
- Sync from upstream post 3.323.0, bump version by @satmandu in #16
Full Changelog: v2.322.2...v2.323.1
434371db777a3b76311fe54b2bfb109ef3c6165da31205e4b96c8f3d26157ccb actions-runner-linux-arm-2.323.1.tar.gz
a2699f7b9f9ffe56eea201827697b2e819c47fafab28e33bec94a2977b6cb097 actions-runner-linux-arm64-2.323.1.tar.gz
59064c3c66d622a61705f8a18ea321a3328a23191104642afa6de0569597031f actions-runner-linux-x64-2.323.1.tar.gz
53d7373630b253b4f74749b90e4fbde4027707ff5810f312dbb8573647a84ee5 actions-runner-osx-arm64-2.323.1.tar.gz
cf775cf90e050c9e88e759174205f1df146bf1f33651a2872b8939713423f918 actions-runner-osx-x64-2.323.1.tar.gz
60db9dfe093b795a435ba7faff1e711e000c1dced697f64cf0fb638c6f29a554 actions-runner-win-arm64-2.323.1.zip
a8e0565399f29a6831e432a82ff181abdfc0fdb2da015b14ca928e7e72a4c479 actions-runner-win-x64-2.323.1.zip
v2.322.2
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
- Bump docker/login-action from 2 to 3 (actions#3673) by @satmandu in #10
- Merge from upstream: Bump runner to dotnet 9. by @satmandu in #9
- Bump version to 2.322.2 by @satmandu in #11
Full Changelog: v2.322.1...v2.322.2
v2.322.1
What's Changed
- Update dotnet sdk to latest version @9.0.101 by @github-actions in #5
- Update dotnet sdk to latest version @9.0.102 by @github-actions in #7
- Upstream main sync by @satmandu in #8
New Contributors
- @github-actions made their first contribution in #5
Full Changelog: https://github.com/satmandu/runner/commits/v2.322.1
v2.321.1
v2.320.1
What's Changed
- Bump version to active builds for arm with .Net 8.0
- Adding Snapshot additional mapping tokens actions#3468
- Create launch httpclient using the right handler and setting actions#3476
- Fix missing default user-agent for jitconfig runner actions#3473
- Cleanup back-compat code for interpreting Run Service status codes actions#3456
- Add runner or worker to the useragent actions#3457
- Handle Error Body in Responses from Broker actions#3454
- Fix issues for composite actions (Run Service flow) actions#3446
- Trace GitHub RequestId to log actions#3442
- Add
jq
,git
,unzip
andcurl
to default packages installed actions#3056 - Add pid to user-agent and session owner actions#3432
Full Changelog: actions/runner@v2.319.1...v2.320.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/v2.320.1/actions-runner-win-x64-2.320.1.zip -OutFile actions-runner-win-x64-2.320.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.320.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/actions/runner/releases/download/v2.320.1/actions-runner-win-arm64-2.320.1.zip -OutFile actions-runner-win-arm64-2.320.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.320.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/actions/runner/releases/download/v2.320.1/actions-runner-osx-x64-2.320.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.320.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/actions/runner/releases/download/v2.320.1/actions-runner-osx-arm64-2.320.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.320.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.320.1/actions-runner-linux-x64-2.320.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.320.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.320.1/actions-runner-linux-arm64-2.320.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.320.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.320.1/actions-runner-linux-arm-2.320.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.320.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.320.1.zip 035e7d7105167e5826efb8cd452d58c71962055319cb7a32d70f8a9735658428
- actions-runner-win-arm64-2.320.1.zip 0baff451a2f855f8e42e7e3aeec1bba734b72c35fa18f2c5f27a113869652cae
- actions-runner-osx-x64-2.320.1.tar.gz aeb819555afab5a8f21635d171670cbbb61de38fa9fb416daf81c7a9a512b671
- actions-runner-osx-arm64-2.320.1.tar.gz 33bd6913b66342483248ddf3293c1e1cd76793010ef60e9759d0a47e31c3ff88
- actions-runner-linux-x64-2.320.1.tar.gz 46cc826d87fa631648fcf5eb36d6532bba72bfcd9715262039d6d69219ee1e17
- actions-runner-linux-arm64-2.320.1.tar.gz 0afbcc77f6b9977032bf5fcb366ea9c1f396bf038535efe40c88359738824e15
- actions-runner-linux-arm-2.320.1.tar.gz d6a4685be6191e670c202502e6843ecefc5ff9fc6c4b0521311cdb6fced843b9