mirror of
https://github.com/actions/runner.git
synced 2025-12-10 12:36:23 +00:00
1.6 KiB
1.6 KiB
Features
- Added support for OS and Architecture Labels for self hosted runners (#130)
Bugs
- N/A
Misc
- Updated Prompts for self-hosted runners (#126)
- Optimized Secret Masking of Base64 Encoded Secrets (#128)
- Added additional tests for secret masking (#129)
Agent Downloads
| Package | |
|---|---|
| Windows x64 | actions-runner-win-x64-<RUNNER_VERSION>.zip |
| macOS | actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz |
| Linux x64 | actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz |
After Download:
Windows x64
C:\> mkdir myagent && cd myagent
C:\myagent> Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$HOME\Downloads\actions-runner-win-x64-<RUNNER_VERSION>.zip", "$PWD")
OSX
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz
Linux x64
~/$ mkdir myagent && cd myagent
~/myagent$ tar xzf ~/Downloads/actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz