Fix actions design about default actions download url (#30360)

Fix #30359
This commit is contained in:
Lunny Xiao
2024-04-09 16:39:38 +00:00
committed by GitHub
parent 2b0c2187e4
commit 287e279b33
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ However, if a job container tries to fetch code from localhost, it will fail bec
### Connection 3, act runner to internet
When you use some actions like `actions/checkout@v4`, the act runner downloads the scripts, not the job containers.
By default, it downloads from [gitea.com](http://gitea.com/), so it requires access to the internet.
By default, it downloads from [github.com](http://github.com/), so it requires access to the internet. If you configure the `DEFAULT_ACTIONS_URL` to `self`, then it will download from your Gitea instance by default. Then it will not connect to internet when downloading the action itself.
It also downloads some docker images from Docker Hub by default, which also requires internet access.
However, internet access is not strictly necessary.