1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-27 01:33:39 +02:00

feat(deps): update env to v7 (#3814)

env v7!

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker 2023-03-01 01:20:37 -03:00 committed by GitHub
parent 6eff3857a1
commit acc9eea154
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 15 additions and 15 deletions

2
go.mod
View File

@ -8,7 +8,7 @@ require (
github.com/atc0005/go-teams-notify/v2 v2.7.0
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20220517224237-e6f29200ae04
github.com/caarlos0/ctrlc v1.2.0
github.com/caarlos0/env/v6 v6.10.1
github.com/caarlos0/env/v7 v7.0.0
github.com/caarlos0/go-reddit/v3 v3.0.1
github.com/caarlos0/go-shellwords v1.0.12
github.com/caarlos0/log v0.2.1

4
go.sum
View File

@ -853,8 +853,8 @@ github.com/bytecodealliance/wasmtime-go v0.36.0/go.mod h1:q320gUxqyI8yB+ZqRuaJOE
github.com/caarlos0/ctrlc v1.0.0/go.mod h1:CdXpj4rmq0q/1Eb44M9zi2nKB0QraNKuRGYGrrHhcQw=
github.com/caarlos0/ctrlc v1.2.0 h1:AtbThhmbeYx1WW3WXdWrd94EHKi+0NPRGS4/4pzrjwk=
github.com/caarlos0/ctrlc v1.2.0/go.mod h1:n3gDlSjsXZ7rbD9/RprIR040b7oaLfNStikPd4gFago=
github.com/caarlos0/env/v6 v6.10.1 h1:t1mPSxNpei6M5yAeu1qtRdPAK29Nbcf/n3G7x+b3/II=
github.com/caarlos0/env/v6 v6.10.1/go.mod h1:hvp/ryKXKipEkcuYjs9mI4bBCg+UI0Yhgm5Zu0ddvwc=
github.com/caarlos0/env/v7 v7.0.0 h1:cyczlTd/zREwSr9ch/mwaDl7Hse7kJuUY8hvHfXu5WI=
github.com/caarlos0/env/v7 v7.0.0/go.mod h1:LPPWniDUq4JaO6Q41vtlyikhMknqymCLBw0eX4dcH1E=
github.com/caarlos0/go-reddit/v3 v3.0.1 h1:w8ugvsrHhaE/m4ez0BO/sTBOBWI9WZTjG7VTecHnql4=
github.com/caarlos0/go-reddit/v3 v3.0.1/go.mod h1:QlwgmG5SAqxMeQvg/A2dD1x9cIZCO56BMnMdjXLoisI=
github.com/caarlos0/go-rpmutils v0.2.1-0.20211112020245-2cd62ff89b11 h1:IRrDwVlWQr6kS1U8/EtyA1+EHcc4yl8pndcqXWrEamg=

View File

@ -4,7 +4,7 @@ import (
"fmt"
"strconv"
"github.com/caarlos0/env/v6"
"github.com/caarlos0/env/v7"
"github.com/caarlos0/log"
"github.com/disgoorg/disgo/discord"
"github.com/disgoorg/disgo/webhook"

View File

@ -3,7 +3,7 @@ package linkedin
import (
"fmt"
"github.com/caarlos0/env/v6"
"github.com/caarlos0/env/v7"
"github.com/caarlos0/log"
"github.com/goreleaser/goreleaser/internal/tmpl"
"github.com/goreleaser/goreleaser/pkg/context"

View File

@ -3,7 +3,7 @@ package mastodon
import (
"fmt"
"github.com/caarlos0/env/v6"
"github.com/caarlos0/env/v7"
"github.com/caarlos0/log"
"github.com/goreleaser/goreleaser/internal/tmpl"
"github.com/goreleaser/goreleaser/pkg/context"

View File

@ -7,7 +7,7 @@ import (
"io"
"net/http"
"github.com/caarlos0/env/v6"
"github.com/caarlos0/env/v7"
"github.com/caarlos0/log"
"github.com/goreleaser/goreleaser/internal/tmpl"

View File

@ -6,7 +6,7 @@ import (
"fmt"
"net/http"
"github.com/caarlos0/env/v6"
"github.com/caarlos0/env/v7"
"github.com/caarlos0/log"
"github.com/goreleaser/goreleaser/internal/tmpl"
"github.com/goreleaser/goreleaser/pkg/context"

View File

@ -3,7 +3,7 @@ package reddit
import (
"fmt"
"github.com/caarlos0/env/v6"
"github.com/caarlos0/env/v7"
"github.com/caarlos0/go-reddit/v3/reddit"
"github.com/caarlos0/log"
"github.com/goreleaser/goreleaser/internal/tmpl"

View File

@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"
"github.com/caarlos0/env/v6"
"github.com/caarlos0/env/v7"
"github.com/caarlos0/log"
"github.com/goreleaser/goreleaser/internal/tmpl"
"github.com/goreleaser/goreleaser/pkg/context"

View File

@ -4,7 +4,7 @@ import (
"crypto/tls"
"fmt"
"github.com/caarlos0/env/v6"
"github.com/caarlos0/env/v7"
"github.com/caarlos0/log"
"github.com/goreleaser/goreleaser/internal/tmpl"
"github.com/goreleaser/goreleaser/pkg/context"

View File

@ -5,7 +5,7 @@ import (
goteamsnotify "github.com/atc0005/go-teams-notify/v2"
"github.com/atc0005/go-teams-notify/v2/messagecard"
"github.com/caarlos0/env/v6"
"github.com/caarlos0/env/v7"
"github.com/caarlos0/log"
"github.com/goreleaser/goreleaser/internal/tmpl"
"github.com/goreleaser/goreleaser/pkg/context"

View File

@ -4,7 +4,7 @@ import (
"fmt"
"strconv"
"github.com/caarlos0/env/v6"
"github.com/caarlos0/env/v7"
"github.com/caarlos0/log"
api "github.com/go-telegram-bot-api/telegram-bot-api"
"github.com/goreleaser/goreleaser/internal/tmpl"

View File

@ -3,7 +3,7 @@ package twitter
import (
"fmt"
"github.com/caarlos0/env/v6"
"github.com/caarlos0/env/v7"
"github.com/caarlos0/log"
"github.com/dghubble/go-twitter/twitter"
"github.com/dghubble/oauth1"

View File

@ -9,7 +9,7 @@ import (
"net/url"
"strings"
"github.com/caarlos0/env/v6"
"github.com/caarlos0/env/v7"
"github.com/caarlos0/log"
"github.com/goreleaser/goreleaser/internal/tmpl"
"github.com/goreleaser/goreleaser/pkg/context"