fix: step container workdir and mounts (#93)

* fix: step container workdir and mounts
* avoid perm issues and do not mount tool_cache
This commit is contained in:
ChristopherHX
2025-04-26 14:14:52 +02:00
committed by GitHub
parent eddc77f3e0
commit a3c8116dee
8 changed files with 77 additions and 2 deletions

View File

@@ -38,6 +38,7 @@ func init() {
platforms = map[string]string{
"ubuntu-latest": baseImage,
"self-hosted": "-self-hosted",
}
if l := os.Getenv("ACT_TEST_LOG_LEVEL"); l != "" {
@@ -325,6 +326,9 @@ func TestRunEvent(t *testing.T) {
// local remote action overrides
{workdir, "local-remote-action-overrides", "push", "", platforms, secrets},
// docker action on host executor
{workdir, "docker-action-host-env", "push", "", platforms, secrets},
}
for _, table := range tables {