A runner for Gitea based on act.
Go to file
Christopher Homberger 83cbf1f2b8 Port CI to Gitea.com (#1)
# Problems
- [x] Some env variables from act itself / act_runner let the tests fail.
- [ ] CI takes too long to clone actions, need to speed up the used act_runner by sparse checkout
    - Runners are reused this speeds up once every runner has ran every job
- [ ] Qemu setup is broken and do not add all platforms like GitHub CI expected`  linux/amd64,linux/amd64/v2,linux/amd64/v3,linux/amd64/v4,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/loong64,linux/arm/v7,linux/arm/v6` got `linux/amd64,linux/amd64/v2,linux/amd64/v3,linux/amd64/v4,linux/386` without qemu set up
  - Test Disabled
- [x] ACTIONS_RUNTIME_TOKEN needs to be unset
- [ ] Snapshot needs our version of the npm package / patching
  - Test Disabled
- [ ] ACTIONS_RESULTS_URL:http://127.0.0.1:12345/ seems to be a fallback to localhost this is a problem
  - Test Disabled

Reviewed-on: https://gitea.com/actions-oss/act-cli/pulls/1
Co-authored-by: Christopher Homberger <christopher.homberger@web.de>
Co-committed-by: Christopher Homberger <christopher.homberger@web.de>
2025-11-27 14:57:23 +00:00
.gitea/workflows Port CI to Gitea.com (#1) 2025-11-27 14:57:23 +00:00
.github build(deps): bump the dependencies group with 2 updates (#140) 2025-11-02 20:04:37 +01:00
.vscode fix: update artifact server to address GHSL-2023-004 (#1565) 2023-01-16 21:01:54 +00:00
cmd feat: add parallel flag (#114) 2025-06-08 12:41:42 +02:00
internal Replace expressions engine (#133) 2025-10-06 13:53:15 +02:00
pkg Port CI to Gitea.com (#1) 2025-11-27 14:57:23 +00:00
.codespellrc Add codespell support (config, workflow to detect/not fix) and make it fix few typos (#2296) 2024-04-19 09:22:45 +00:00
.editorconfig ci(choco): update chocolatey to 1.1.0 (#1164) 2022-05-23 19:05:49 +00:00
.gitignore revert auto changelog generator 2022-06-20 17:02:49 -07:00
.gitleaksignore Update .gitleaksignore (#25) 2025-01-29 18:57:08 +01:00
.golangci.yml core(deps): bump golang-cilint to v2.0.2 (#83) 2025-04-25 21:58:30 +02:00
.goreleaser.yml Use act as bin name (#22) 2025-01-29 17:22:24 +01:00
.markdownlint.yml ci: replace superlinter with megalinter (#923) 2021-12-22 09:29:43 -08:00
.mega-linter.yml feat: add check for newer versions (#1562) 2023-01-15 10:30:41 +00:00
.mergify.yml ci(mergify): upgrade configuration to current format (#2547) 2024-12-25 02:00:07 +00:00
.prettierignore
.prettierrc.yml
CODEOWNERS
CONTRIBUTING.md Update Readme and issue templates (#40) 2025-01-31 17:54:54 +01:00
LICENSE
Makefile chore: upgrade dependencies (#2589) 2024-12-24 13:12:24 -08:00
README.md chore(docs): Mention YAML Anchor support (#130) 2025-10-06 13:53:29 +02:00
VERIFICATION
VERSION Bump version from 0.3.5 to 0.4.0 (#143) 2025-11-27 14:19:30 +01:00
act-cli.nuspec
codecov.yml Actions Artifacts v4 backend (#2224) 2024-05-20 20:00:04 +00:00
go.mod build(deps): bump golang.org/x/crypto from 0.43.0 to 0.45.0 (#142) 2025-11-27 13:04:58 +00:00
go.sum build(deps): bump golang.org/x/crypto from 0.43.0 to 0.45.0 (#142) 2025-11-27 13:04:58 +00:00
install.sh feat: Adding in logic to check if act needs to be downloaded (#2575) 2024-12-25 01:43:09 +00:00
main.go feat: Support graceful job step cancellation (#69) 2025-03-29 12:27:36 +01:00
main_test.go feat: Support graceful job step cancellation (#69) 2025-03-29 12:27:36 +01:00

README.md

Overview

[!CAUTION] This is a derivative of nektos/act between version v0.2.71 from January 2025 and v0.2.72 February 2025

  • Support for macOS VMs using tart -P tart://
  • --use-new-action-cache has been removed, the default clone mode of nektos/act has been removed
  • CI tests are run in 6min compared to 17min on nektos/act
  • Flags --pull=false and --rebuild=false are inverted to --no-poll and --no-rebuild
  • YAML Anchors are supported

Act User Guide

Please look at the act user guide for more documentation.

Support

Need help? Ask on Discussions!

Contributing

Want to contribute to act? Awesome! Check out the contributing guidelines to get involved.

Manually building from source

  • Install Go tools 1.24+ - (https://golang.org/doc/install)
  • Clone this repo git clone git@github.com:actions-oss/act-cli.git
  • Run unit tests with make test
  • Build and install: make install