update import path

This commit is contained in:
Christopher Homberger
2026-02-22 20:54:58 +01:00
parent 9fd95d203f
commit 3413919161
75 changed files with 233 additions and 164 deletions

View File

@@ -5,7 +5,7 @@ import (
"io"
"os"
"github.com/actions-oss/act-cli/pkg/common"
"gitea.com/gitea/act_runner/pkg/common"
"github.com/docker/go-connections/nat"
"golang.org/x/term"
)

View File

@@ -6,7 +6,7 @@ import (
"context"
"strings"
"github.com/actions-oss/act-cli/pkg/common"
"gitea.com/gitea/act_runner/pkg/common"
"github.com/docker/cli/cli/config"
"github.com/docker/cli/cli/config/credentials"
"github.com/docker/docker/api/types/registry"

View File

@@ -15,7 +15,7 @@ import (
"github.com/moby/patternmatcher"
"github.com/moby/patternmatcher/ignorefile"
"github.com/actions-oss/act-cli/pkg/common"
"gitea.com/gitea/act_runner/pkg/common"
)
// NewDockerBuildExecutor function to create a run executor for the container

View File

@@ -5,7 +5,7 @@ package container
import (
"context"
"github.com/actions-oss/act-cli/pkg/common"
"gitea.com/gitea/act_runner/pkg/common"
"github.com/docker/docker/api/types/network"
)

View File

@@ -13,7 +13,7 @@ import (
"github.com/docker/docker/api/types/image"
"github.com/docker/docker/api/types/registry"
"github.com/actions-oss/act-cli/pkg/common"
"gitea.com/gitea/act_runner/pkg/common"
)
// NewDockerPullExecutor function to create a run executor for the container

View File

@@ -35,8 +35,8 @@ import (
specs "github.com/opencontainers/image-spec/specs-go/v1"
"github.com/spf13/pflag"
"github.com/actions-oss/act-cli/pkg/common"
"github.com/actions-oss/act-cli/pkg/filecollector"
"gitea.com/gitea/act_runner/pkg/common"
"gitea.com/gitea/act_runner/pkg/filecollector"
)
// NewContainer creates a reference to a container

View File

@@ -6,8 +6,8 @@ import (
"context"
"runtime"
"gitea.com/gitea/act_runner/pkg/common"
"github.com/docker/docker/api/types/system"
"github.com/actions-oss/act-cli/pkg/common"
"github.com/pkg/errors"
)

View File

@@ -5,7 +5,7 @@ package container
import (
"context"
"github.com/actions-oss/act-cli/pkg/common"
"gitea.com/gitea/act_runner/pkg/common"
"github.com/docker/docker/api/types/filters"
"github.com/docker/docker/api/types/volume"
)

View File

@@ -20,9 +20,9 @@ import (
"github.com/go-git/go-git/v5/plumbing/format/gitignore"
"golang.org/x/term"
"github.com/actions-oss/act-cli/pkg/common"
"github.com/actions-oss/act-cli/pkg/filecollector"
"github.com/actions-oss/act-cli/pkg/lookpath"
"gitea.com/gitea/act_runner/pkg/common"
"gitea.com/gitea/act_runner/pkg/filecollector"
"gitea.com/gitea/act_runner/pkg/lookpath"
)
type HostEnvironment struct {

View File

@@ -8,7 +8,7 @@ import (
"io"
"strings"
"github.com/actions-oss/act-cli/pkg/common"
"gitea.com/gitea/act_runner/pkg/common"
)
func parseEnvFile(e Container, srcPath string, env *map[string]string) common.Executor {