diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5eafa55..2114f8e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -22,8 +22,6 @@ jobs: experimental: true - name: Setup Environment working-directory: .tools - run: |- - mise run build - docker pull ghcr.io/jaredallard/overlay:updater + run: mise run build - name: Run linter run: mise run lint diff --git a/.tools/internal/ebuild/manifest.go b/.tools/internal/ebuild/manifest.go index 67be425..b9af92a 100644 --- a/.tools/internal/ebuild/manifest.go +++ b/.tools/internal/ebuild/manifest.go @@ -37,7 +37,7 @@ import ( var manifestValidationScript []byte // gentooImage is the docker image used for validating Manifest files. -var gentooImage = "ghcr.io/jaredallard/overlay:updater" +var gentooImage = "git.rgst.io/jaredallard/overlay:updater" // Common errors. var ( diff --git a/.tools/internal/steps/executor.go b/.tools/internal/steps/executor.go index 3bad20e..2bd4397 100644 --- a/.tools/internal/steps/executor.go +++ b/.tools/internal/steps/executor.go @@ -98,7 +98,7 @@ func (e *Executor) Run(ctx context.Context) (*Results, error) { // is much better. bid, err := exec.Command( "docker", "run", "--init", "-d", "--rm", "--entrypoint", "sleep", - "ghcr.io/jaredallard/overlay:updater", "infinity", + "git.rgst.io/jaredallard/overlay:updater", "infinity", ).Output() if err != nil { var execErr *exec.ExitError diff --git a/rebuild-manifest.sh b/rebuild-manifest.sh index bc23754..3e50fa5 100755 --- a/rebuild-manifest.sh +++ b/rebuild-manifest.sh @@ -13,7 +13,7 @@ if [[ ! -d "$ebuild_path" ]]; then exit 1 fi -imageName="ghcr.io/jaredallard/overlay:updater" +imageName="git.rgst.io/jaredallard/overlay:updater" # Build the image if it doesn't already exist in the cache. if ! docker image inspect "$imageName" >/dev/null; then