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
Copy file name to clipboardExpand all lines: README.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -217,7 +217,7 @@ If your workflow depends on this token, you need to create a [personal access to
217
217
act -s GITHUB_TOKEN=[insert token or leave blank and omit equals for secure input]
218
218
```
219
219
220
-
If [GitHub CLI](https://cli.github.com/) is installed, the [`gh auth token`](https://cli.github.com/manual/gh_auth_token) command can be used to autmatically pass the token to act
220
+
If [GitHub CLI](https://cli.github.com/) is installed, the [`gh auth token`](https://cli.github.com/manual/gh_auth_token) command can be used to automatically pass the token to act
221
221
222
222
```bash
223
223
act -s GITHUB_TOKEN="$(gh auth token)"
@@ -297,6 +297,15 @@ If you need an environment that works just like the corresponding GitHub runner
297
297
298
298
- [`catthehacker/ubuntu:full-*`](https://github.com/catthehacker/docker_images/pkgs/container/ubuntu) - built from Packer template provided by GitHub, see [catthehacker/virtual-environments-fork](https://github.com/catthehacker/virtual-environments-fork) or [catthehacker/docker_images](https://github.com/catthehacker/docker_images) for more information
299
299
300
+
## Using local runner images
301
+
302
+
The `--pull` flag is set to true by default due to a breaking on older default docker images. This would pull the docker image everytime act is executed.
303
+
304
+
Set `--pull` to false if a local docker image is needed
305
+
```sh
306
+
act --pull=false
307
+
```
308
+
300
309
## Use an alternative runner image
301
310
302
311
To use a different image for the runner, use the `-P` option.
@@ -485,7 +494,7 @@ Want to contribute to act? Awesome! Check out the [contributing guidelines](CONT
485
494
486
495
## Manually building from source
487
496
488
-
- Install Go tools 1.18+ - (<https://golang.org/doc/install>)
497
+
- Install Go tools 1.20+ - (<https://golang.org/doc/install>)
0 commit comments