diff --git a/Dockerfile b/Dockerfile index cc37ad6..69e880f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,7 @@ FROM golang:1.26@sha256:b54cbf583d390341599d7bcbc062425c081105cc5ef6d170ced98ef9d047c716 AS build -ARG GITLAB_USER -ARG GITLAB_TOKEN - WORKDIR /build ENV CGO_ENABLED=0 -ENV GOPRIVATE=gitlab.com/unboundsoftware/* ENV GOEXPERIMENT=jsonv2 COPY go.mod go.sum ./ diff --git a/cmd/service/service.go b/cmd/service/service.go index 9248bab..c5fa006 100644 --- a/cmd/service/service.go +++ b/cmd/service/service.go @@ -15,9 +15,9 @@ import ( "github.com/alecthomas/kong" "github.com/rs/cors" - "gitlab.com/unboundsoftware/auth0mock/auth" - "gitlab.com/unboundsoftware/auth0mock/handlers" - "gitlab.com/unboundsoftware/auth0mock/store" + "git.unbound.se/unboundsoftware/auth0mock/auth" + "git.unbound.se/unboundsoftware/auth0mock/handlers" + "git.unbound.se/unboundsoftware/auth0mock/store" ) var ( diff --git a/go.mod b/go.mod index 60a56f1..4b29f78 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitlab.com/unboundsoftware/auth0mock +module git.unbound.se/unboundsoftware/auth0mock go 1.26.0 diff --git a/handlers/discovery.go b/handlers/discovery.go index 76a69e1..57b1df4 100644 --- a/handlers/discovery.go +++ b/handlers/discovery.go @@ -4,7 +4,7 @@ import ( "encoding/json" "net/http" - "gitlab.com/unboundsoftware/auth0mock/auth" + "git.unbound.se/unboundsoftware/auth0mock/auth" ) // DiscoveryHandler handles OIDC discovery endpoints diff --git a/handlers/management.go b/handlers/management.go index 4d76832..c512440 100644 --- a/handlers/management.go +++ b/handlers/management.go @@ -7,7 +7,7 @@ import ( "net/http" "strings" - "gitlab.com/unboundsoftware/auth0mock/store" + "git.unbound.se/unboundsoftware/auth0mock/store" ) // ManagementHandler handles Auth0 Management API endpoints diff --git a/handlers/oauth.go b/handlers/oauth.go index 5f38974..8bf967f 100644 --- a/handlers/oauth.go +++ b/handlers/oauth.go @@ -9,8 +9,8 @@ import ( "net/http" "net/url" - "gitlab.com/unboundsoftware/auth0mock/auth" - "gitlab.com/unboundsoftware/auth0mock/store" + "git.unbound.se/unboundsoftware/auth0mock/auth" + "git.unbound.se/unboundsoftware/auth0mock/store" ) //go:embed templates/login.html diff --git a/handlers/session.go b/handlers/session.go index 916df63..498adcb 100644 --- a/handlers/session.go +++ b/handlers/session.go @@ -5,8 +5,8 @@ import ( "log/slog" "net/http" - "gitlab.com/unboundsoftware/auth0mock/auth" - "gitlab.com/unboundsoftware/auth0mock/store" + "git.unbound.se/unboundsoftware/auth0mock/auth" + "git.unbound.se/unboundsoftware/auth0mock/store" ) // SessionHandler handles session-related endpoints diff --git a/renovate.json b/renovate.json index d53d6f4..2b4f32e 100644 --- a/renovate.json +++ b/renovate.json @@ -9,7 +9,7 @@ "kubernetes" ], "matchPackageNames": [ - "registry.gitlab.com/unboundsoftware/auth0mock" + "oci.unbound.se/unboundsoftware/auth0mock" ], "enabled": false }