[PR #2042] [CLOSED] Follow local action symlink #2247

Closed
opened 2026-03-01 21:54:37 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/nektos/act/pull/2042
Author: @ThantZawLyn
Created: 10/11/2023
Status: Closed

Base: follow_local_action_symlinkHead: follow_local_action_symlink


📝 Commits (10+)

  • 4810f69 build(deps): bump github.com/moby/buildkit from 0.11.6 to 0.12.0 (#1917)
  • 83b0a5b Add new CLI flag to log just the job id and not the entire job name (#1920)
  • 67f4baa local runner doc (#1911)
  • 17bf4fc build(deps): bump github.com/go-git/go-git/v5 from 5.7.0 to 5.8.0 (#1925)
  • d720ff0 build(deps): bump github.com/docker/docker (#1933)
  • 8e6c7c1 build(deps): bump github.com/docker/cli (#1932)
  • 8bf10cf build(deps): bump github.com/go-git/go-git/v5 from 5.8.0 to 5.8.1 (#1934)
  • d5d8548 chore: bump VERSION to 0.2.49
  • c812715 build(deps): bump github.com/moby/buildkit from 0.12.0 to 0.12.1 (#1947)
  • 74b74e8 build(deps): bump golang.org/x/term from 0.10.0 to 0.11.0 (#1948)

📊 Changes

1524 files changed (+468603 additions, -567 deletions)

View changed files

📝 .github/actions/run-tests/action.yml (+1 -1)
📝 .github/workflows/checks.yml (+4 -4)
📝 .github/workflows/release.yml (+7 -10)
📝 CONTRIBUTING.md (+1 -1)
📝 README.md (+21 -0)
📝 VERSION (+1 -1)
📝 cmd/input.go (+1 -0)
📝 cmd/root.go (+6 -3)
📝 go.mod (+29 -24)
📝 go.sum (+70 -93)
📝 pkg/container/container_types.go (+6 -5)
📝 pkg/container/docker_build.go (+2 -2)
📝 pkg/container/docker_run.go (+9 -1)
📝 pkg/container/host_environment.go (+32 -1)
📝 pkg/exprparser/interpreter.go (+21 -22)
📝 pkg/model/action.go (+5 -2)
📝 pkg/model/planner.go (+2 -4)
📝 pkg/model/planner_test.go (+22 -0)
📝 pkg/model/workflow.go (+1 -1)
📝 pkg/runner/action.go (+19 -12)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/nektos/act/pull/2042 **Author:** [@ThantZawLyn](https://github.com/ThantZawLyn) **Created:** 10/11/2023 **Status:** ❌ Closed **Base:** `follow_local_action_symlink` ← **Head:** `follow_local_action_symlink` --- ### 📝 Commits (10+) - [`4810f69`](https://github.com/nektos/act/commit/4810f69367a141f9cc282d21ab61bb598d5ec584) build(deps): bump github.com/moby/buildkit from 0.11.6 to 0.12.0 (#1917) - [`83b0a5b`](https://github.com/nektos/act/commit/83b0a5b1f2cbc19338fa57659c51695744e89730) Add new CLI flag to log just the job id and not the entire job name (#1920) - [`67f4baa`](https://github.com/nektos/act/commit/67f4baa618b3371cc0ec0c03b169141c25809c9e) local runner doc (#1911) - [`17bf4fc`](https://github.com/nektos/act/commit/17bf4fc5afd147ea967445b9d0dc2e684f57377c) build(deps): bump github.com/go-git/go-git/v5 from 5.7.0 to 5.8.0 (#1925) - [`d720ff0`](https://github.com/nektos/act/commit/d720ff09a281aae453fe6cc2970e6f833b1da49d) build(deps): bump github.com/docker/docker (#1933) - [`8e6c7c1`](https://github.com/nektos/act/commit/8e6c7c11fe35bd117579277c29238e4e45996a7c) build(deps): bump github.com/docker/cli (#1932) - [`8bf10cf`](https://github.com/nektos/act/commit/8bf10cf87618e3ebe1c0f77c1add9e3a08b3f514) build(deps): bump github.com/go-git/go-git/v5 from 5.8.0 to 5.8.1 (#1934) - [`d5d8548`](https://github.com/nektos/act/commit/d5d854854651c151ecd914bb6e2e370e0057929a) chore: bump VERSION to 0.2.49 - [`c812715`](https://github.com/nektos/act/commit/c8127155bc64224a1392d2264b8d432328edea57) build(deps): bump github.com/moby/buildkit from 0.12.0 to 0.12.1 (#1947) - [`74b74e8`](https://github.com/nektos/act/commit/74b74e847bad3c71ad7a1df76384a804bb46d644) build(deps): bump golang.org/x/term from 0.10.0 to 0.11.0 (#1948) ### 📊 Changes **1524 files changed** (+468603 additions, -567 deletions) <details> <summary>View changed files</summary> 📝 `.github/actions/run-tests/action.yml` (+1 -1) 📝 `.github/workflows/checks.yml` (+4 -4) 📝 `.github/workflows/release.yml` (+7 -10) 📝 `CONTRIBUTING.md` (+1 -1) 📝 `README.md` (+21 -0) 📝 `VERSION` (+1 -1) 📝 `cmd/input.go` (+1 -0) 📝 `cmd/root.go` (+6 -3) 📝 `go.mod` (+29 -24) 📝 `go.sum` (+70 -93) 📝 `pkg/container/container_types.go` (+6 -5) 📝 `pkg/container/docker_build.go` (+2 -2) 📝 `pkg/container/docker_run.go` (+9 -1) 📝 `pkg/container/host_environment.go` (+32 -1) 📝 `pkg/exprparser/interpreter.go` (+21 -22) 📝 `pkg/model/action.go` (+5 -2) 📝 `pkg/model/planner.go` (+2 -4) 📝 `pkg/model/planner_test.go` (+22 -0) 📝 `pkg/model/workflow.go` (+1 -1) 📝 `pkg/runner/action.go` (+19 -12) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-01 21:54:37 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/act#2247
No description provided.