You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
18
8
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
19
9
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners_
20
10
21
11
## Windows x64
12
+
22
13
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.
23
14
24
15
The following snipped needs to be run on `powershell`:
**Warning:** Windows arm64 runners are currently in preview status and use [unofficial versions of nodejs](https://unofficial-builds.nodejs.org/). They are not intended for production workflows.
37
30
38
31
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.
39
32
40
33
The following snipped needs to be run on `powershell`:
@@ -61,7 +55,7 @@ tar xzf ./actions-runner-osx-x64-<RUNNER_VERSION>.tar.gz
61
55
62
56
## OSX arm64 (Apple silicon)
63
57
64
-
```bash
58
+
```bash
65
59
# Create a folder
66
60
mkdir actions-runner &&cd actions-runner
67
61
# Download the latest runner package
@@ -72,7 +66,7 @@ tar xzf ./actions-runner-osx-arm64-<RUNNER_VERSION>.tar.gz
72
66
73
67
## Linux x64
74
68
75
-
```bash
69
+
```bash
76
70
# Create a folder
77
71
mkdir actions-runner &&cd actions-runner
78
72
# Download the latest runner package
@@ -83,7 +77,7 @@ tar xzf ./actions-runner-linux-x64-<RUNNER_VERSION>.tar.gz
83
77
84
78
## Linux arm64
85
79
86
-
```bash
80
+
```bash
87
81
# Create a folder
88
82
mkdir actions-runner &&cd actions-runner
89
83
# Download the latest runner package
@@ -94,7 +88,7 @@ tar xzf ./actions-runner-linux-arm64-<RUNNER_VERSION>.tar.gz
94
88
95
89
## Linux arm
96
90
97
-
```bash
91
+
```bash
98
92
# Create a folder
99
93
mkdir actions-runner &&cd actions-runner
100
94
# Download the latest runner package
@@ -104,6 +98,7 @@ tar xzf ./actions-runner-linux-arm-<RUNNER_VERSION>.tar.gz
104
98
```
105
99
106
100
## Using your self hosted runner
101
+
107
102
For additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners)
0 commit comments