Skip to content

Commit

Permalink
chore: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nvloff-f3 committed Feb 27, 2024
1 parent ecc8326 commit 97c615d
Show file tree
Hide file tree
Showing 510 changed files with 30,674 additions and 7,611 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608" # v4.1.0
with:
fetch-depth: 0
fetch-tags: true
- uses: "actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491" # v5.0.0
- name: test
run: |
Expand Down
36 changes: 20 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,34 @@ module github.com/form3tech-oss/go-pact-testing/v2
go 1.20

require (
github.com/avast/retry-go/v4 v4.3.3
github.com/pact-foundation/pact-go v1.7.0
github.com/sirupsen/logrus v1.9.0
github.com/spf13/viper v1.15.0
github.com/stretchr/testify v1.8.2
github.com/avast/retry-go/v4 v4.5.1
github.com/pact-foundation/pact-go v1.8.0
github.com/sirupsen/logrus v1.9.3
github.com/spf13/viper v1.18.2
github.com/stretchr/testify v1.8.4
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/hashicorp/go-version v1.5.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/afero v1.9.3 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.2 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/text v0.5.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
570 changes: 58 additions & 512 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pacttesting/pact_testing_integration_stage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func (s *pactTestingStage) pact_file_names_exclude_path_separator() *pactTesting
func (s *pactTestingStage) provider_pact_verification_is_successful() *pactTestingStage {
_, filename, _, _ := runtime.Caller(0) //nolint:dogsled // stdlib source
dir := filename[0:strings.LastIndex(filename, "/")]
b, err := os.ReadFile(dir + "/../build/pact-verifications/providerA.json")
b, err := os.ReadFile(filepath.Join(dir, "../build/pact-verifications/providerA.json"))
require.NoError(s.t, err)

str := string(b)
Expand Down
4 changes: 3 additions & 1 deletion pacttesting/testing.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,12 @@ func getTopLevelDir() (string, error) {
func getVersion() (string, error) {
gitCommand := exec.Command("git", "describe", "--tags")
var out bytes.Buffer
var errOut bytes.Buffer
gitCommand.Stdout = &out
gitCommand.Stderr = &errOut
err := gitCommand.Run()
if err != nil {
return "", fmt.Errorf("getting git version: %w", err)
return "", fmt.Errorf("getting git version: %w; out: %s", err, errOut.String())
}

version := strings.TrimRight(out.String(), "\n")
Expand Down
76 changes: 70 additions & 6 deletions vendor/github.com/avast/retry-go/v4/README.md

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

2 changes: 1 addition & 1 deletion vendor/github.com/avast/retry-go/v4/VERSION

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

54 changes: 38 additions & 16 deletions vendor/github.com/avast/retry-go/v4/options.go

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

Loading

0 comments on commit 97c615d

Please sign in to comment.