CARVIEW |
Select Language
HTTP/2 200
date: Tue, 22 Jul 2025 23:46:18 GMT
content-type: text/html; charset=utf-8
vary: X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With
etag: W/"8d03772641134cea0c5ec7bcb91ecbb7"
cache-control: max-age=0, private, must-revalidate
strict-transport-security: max-age=31536000; includeSubdomains; preload
x-frame-options: deny
x-content-type-options: nosniff
x-xss-protection: 0
referrer-policy: no-referrer-when-downgrade
content-security-policy: default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/
server: github.com
content-encoding: gzip
accept-ranges: bytes
set-cookie: _gh_sess=JQ9WuwWGikOp5%2B08jOeC%2BsOchZokvGy4pULm4t5cMaDe9QEdnth12lOL0wSGFwqpCKaJoPYdntAlknEajy7loH8ZSmSwRufZO%2BVGqFUQRcQ99XTrzK7b00p9nX8Rc19Ytcy8y9Pak8uH1TlTwPI1%2FkE2sBPmIpANzRqG90RrxK9K2V4lHAPLcSThu26vF9JHZTdfkrwzJ6OlEm6rTP8OKiCsjqNZxQK3vV4QGTF9UJrZwAvXb7kQalTa2KCX4bpcLkkY0KHd1VZu20faXLSxXg%3D%3D--jPgkIhU4plvJhiOS--56zqgQtkxl54lJalALXnuQ%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax
set-cookie: _octo=GH1.1.639476956.1753227978; Path=/; Domain=github.com; Expires=Wed, 22 Jul 2026 23:46:18 GMT; Secure; SameSite=Lax
set-cookie: logged_in=no; Path=/; Domain=github.com; Expires=Wed, 22 Jul 2026 23:46:18 GMT; HttpOnly; Secure; SameSite=Lax
x-github-request-id: E548:26221E:1D13EE:2822A4:688022CA
Requirements for self hosted runners · shivammathur/setup-php Wiki · GitHub
Skip to content
Navigation Menu
{{ message }}
-
-
Notifications
You must be signed in to change notification settings - Fork 383
Requirements for self hosted runners
Shivam Mathur edited this page Jan 20, 2025
·
20 revisions
Note: This guide is for using self-hosted runners without docker. To set up a docker container with a self-hosted runner follow this guide.
To set up a self-hosted runner for setup-php, make sure the following requirements are met on your system.
-
Ubuntu 20.04 (focal)
andabove
are supported. -
The runner needs a user account having password-less sudo access, otherwise, you would have to enter the password on each workflow run.
# Add your user to the sudo group and enable password-less sudo for all sudoers.
usermod -a -G sudo "$(id -un)"
echo "%sudo ALL = (ALL) NOPASSWD: ALL" | sudo tee -a /etc/sudoers
- If your workflow uses services, then make sure docker is installed.
curl https://get.docker.com | sh
sudo chmod o+rw /var/run/docker.sock
- If you are using
WSL
, check thewsl
version of your distro usingwsl -l -v
.
Connect your Windows docker service to aWSL 1
distro using this guide, forWSL 2
distro follow this guide.
-
Windows 7
and above are supported. - The runner needs a user account that has Administrative privileges.
# Check that it lists Administrators in Local Group Memberships
net user $env:USERNAME | findstr "Local Group Memberships"
-
Powershell Core 6.0
or newer needs to be installed and added toPATH
environment variable.
# Setup Latest Powershell Core using windows Powershell.
Invoke-Expression "& { $(Invoke-RestMethod 'https://aka.ms/install-powershell.ps1') } -AddToPath"
- If you are using
composer
, installing7z
will speed it up onWindows
.
# Install choco
$installScript = Invoke-WebRequest -Uri "https://community.chocolatey.org/install.ps1" -UseBasicParsing
& ([scriptblock]::Create($installScript))
# Install 7-Zip
choco install -y --force 7zip.install
-
MacOS Big Sur 12.x
and above are supported. Both Intel and ARM64macOS
are supported. -
The runner needs a user account having password-less sudo access, otherwise, you would have to enter the password on each workflow run.
-
Run
visudo
sudo visudo
-
Make the following change
- %admin ALL=(ALL) ALL + %admin ALL=(ALL) NOPASSWD: ALL
Clone this wiki locally
You can’t perform that action at this time.