Skip to content

Commit

Permalink
Fix Content-Length header in cache upload request (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofalvai committed Apr 13, 2023
1 parent db92f20 commit 3adaab1
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 20 deletions.
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/bitrise-steplib/steps-save-spm-cache
module github.com/bitrise-steplib/bitrise-step-save-spm-cache

go 1.17

require (
github.com/bitrise-io/go-steputils/v2 v2.0.0-alpha.17
github.com/bitrise-io/go-utils/v2 v2.0.0-alpha.15
github.com/bitrise-io/go-steputils/v2 v2.0.0-alpha.18
github.com/bitrise-io/go-utils/v2 v2.0.0-alpha.16
)

require (
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
github.com/bitrise-io/go-steputils/v2 v2.0.0-alpha.17 h1:npcWC9jimYaJYlYBrPXxschwRAh6elJX01/1lEJ7mD8=
github.com/bitrise-io/go-steputils/v2 v2.0.0-alpha.17/go.mod h1:/ueNOKnsjcUrlt8Ck75WRNspL7E6nAAylvl9oGJtYio=
github.com/bitrise-io/go-steputils/v2 v2.0.0-alpha.18 h1:43cs5DGgfTWEcaod3hZ7eqOQjhVnOL1QiY6TN3xDhhw=
github.com/bitrise-io/go-steputils/v2 v2.0.0-alpha.18/go.mod h1:/ueNOKnsjcUrlt8Ck75WRNspL7E6nAAylvl9oGJtYio=
github.com/bitrise-io/go-utils v1.0.1 h1:e7mepVBkVN1DXRPESNXb0djEw6bxB6B93p/Q74zzcvk=
github.com/bitrise-io/go-utils v1.0.1/go.mod h1:ZY1DI+fEpZuFpO9szgDeICM4QbqoWVt0RSY3tRI1heY=
github.com/bitrise-io/go-utils/v2 v2.0.0-alpha.13/go.mod h1:gZWtM7PLn1VOroa4gN1La/24aRVc0jg5R701jTsPaO8=
github.com/bitrise-io/go-utils/v2 v2.0.0-alpha.15 h1:ERQb+OOa+eKMWb+HByyPd5ugz6TeaJPnQ3xHgyaR7hA=
github.com/bitrise-io/go-utils/v2 v2.0.0-alpha.15/go.mod h1:Laih4ji980SQkRgdnMCH0g4u2GZI/5nnbqmYT9UfKFQ=
github.com/bitrise-io/go-utils/v2 v2.0.0-alpha.16 h1:y+Yo0d8pYIjZiKhQuPM/Z5FY9/mu+wrWkyQlch8f9Po=
github.com/bitrise-io/go-utils/v2 v2.0.0-alpha.16/go.mod h1:Laih4ji980SQkRgdnMCH0g4u2GZI/5nnbqmYT9UfKFQ=
github.com/bmatcuk/doublestar/v4 v4.2.0 h1:Qu+u9wR3Vd89LnlLMHvnZ5coJMWKQamqdz9/p5GNthA=
github.com/bmatcuk/doublestar/v4 v4.2.0/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/bitrise-io/go-utils/v2/exitcode"
"github.com/bitrise-io/go-utils/v2/log"
"github.com/bitrise-io/go-utils/v2/pathutil"
"github.com/bitrise-steplib/steps-save-spm-cache/step"
"github.com/bitrise-steplib/bitrise-step-save-spm-cache/step"
)

func main() {
Expand Down
37 changes: 30 additions & 7 deletions vendor/github.com/bitrise-io/go-steputils/v2/cache/network/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# github.com/bitrise-io/go-steputils/v2 v2.0.0-alpha.17
# github.com/bitrise-io/go-steputils/v2 v2.0.0-alpha.18
## explicit; go 1.17
github.com/bitrise-io/go-steputils/v2/cache
github.com/bitrise-io/go-steputils/v2/cache/compression
Expand All @@ -11,7 +11,7 @@ github.com/bitrise-io/go-steputils/v2/stepconf
github.com/bitrise-io/go-utils/command
github.com/bitrise-io/go-utils/pathutil
github.com/bitrise-io/go-utils/ziputil
# github.com/bitrise-io/go-utils/v2 v2.0.0-alpha.15
# github.com/bitrise-io/go-utils/v2 v2.0.0-alpha.16
## explicit; go 1.17
github.com/bitrise-io/go-utils/v2/analytics
github.com/bitrise-io/go-utils/v2/command
Expand Down

0 comments on commit 3adaab1

Please sign in to comment.