From 85a867753da86801b91d732450d7a69593da4cf8 Mon Sep 17 00:00:00 2001 From: Patryk Hegenberg Date: Wed, 27 Nov 2024 09:42:05 +0100 Subject: [PATCH] fix: fix another error in goreleaser.yml --- .goreleaser.yaml | 9 --------- go.mod | 5 ----- go.sum | 4 ---- 3 files changed, 18 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 806a1ab..9adf43b 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -25,15 +25,6 @@ builds: - windows - darwin -signs: - - cmd: cosign - args: - - "sign-blob" - - "--key=cosign.key" - - "--output-signature=${signature}" - - "${artifact}" - artifacts: all - archives: - format: tar.gz # this name template makes the OS and Arch compatible with the results of `uname`. diff --git a/go.mod b/go.mod index ffc4fd9..55da7e2 100644 --- a/go.mod +++ b/go.mod @@ -4,19 +4,15 @@ go 1.21.5 require ( github.com/a-h/templ v0.2.793 - github.com/chasefleming/elem-go v0.27.0 github.com/jung-kurt/gofpdf v1.16.2 github.com/labstack/echo/v4 v4.12.0 - github.com/stretchr/testify v1.8.4 ) require ( - github.com/davecgh/go-spew v1.1.1 // indirect github.com/golang-jwt/jwt v3.2.2+incompatible // indirect github.com/labstack/gommon v0.4.2 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.20 // indirect - github.com/pmezard/go-difflib v1.0.0 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasttemplate v1.2.2 // indirect golang.org/x/crypto v0.26.0 // indirect @@ -24,5 +20,4 @@ require ( golang.org/x/sys v0.24.0 // indirect golang.org/x/text v0.17.0 // indirect golang.org/x/time v0.6.0 // indirect - gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/go.sum b/go.sum index 11221ed..ab47e8c 100644 --- a/go.sum +++ b/go.sum @@ -1,8 +1,6 @@ github.com/a-h/templ v0.2.793 h1:Io+/ocnfGWYO4VHdR0zBbf39PQlnzVCVVD+wEEs6/qY= github.com/a-h/templ v0.2.793/go.mod h1:lq48JXoUvuQrU0VThrK31yFwdRjTCnIE5bcPCM9IP1w= github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/chasefleming/elem-go v0.27.0 h1:rJhkr7CZuUhx0dN7QAgdKqL+F9Eu5PRTXNxm06h4/9Y= -github.com/chasefleming/elem-go v0.27.0/go.mod h1:hz73qILBIKnTgOujnSMtEj20/epI+f6vg71RUilJAA4= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -48,7 +46,5 @@ golang.org/x/text v0.17.0 h1:XtiM5bkSOt+ewxlOE/aE/AKEHibwj/6gvWMl9Rsh0Qc= golang.org/x/text v0.17.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= golang.org/x/time v0.6.0 h1:eTDhh4ZXt5Qf0augr54TN6suAUudPcawVZeIAPU7D4U= golang.org/x/time v0.6.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=