From 9485e5909eda39565713ab3421301b394e899f7a Mon Sep 17 00:00:00 2001 From: Damjan Smickovski Date: Wed, 7 Feb 2024 12:19:46 +0100 Subject: [PATCH] Go bump --- integration-tests/go.mod | 4 ++-- integration-tests/go.sum | 8 ++++---- integration-tests/testconfig/configs_embed.go | 14 -------------- integration-tests/testconfig/configs_noembed.go | 12 ------------ 4 files changed, 6 insertions(+), 32 deletions(-) delete mode 100644 integration-tests/testconfig/configs_embed.go delete mode 100644 integration-tests/testconfig/configs_noembed.go diff --git a/integration-tests/go.mod b/integration-tests/go.mod index b2b6ea720..ad2b2bee3 100644 --- a/integration-tests/go.mod +++ b/integration-tests/go.mod @@ -15,8 +15,8 @@ require ( github.com/smartcontractkit/chainlink-common v0.1.7-0.20240205180946-df826cb540ce github.com/smartcontractkit/chainlink-solana v1.0.3-0.20240207095026-6904ddc4214a github.com/smartcontractkit/chainlink-testing-framework v1.23.2 - github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20240207083727-35b472e8a2cc - github.com/smartcontractkit/chainlink/v2 v2.9.0-beta0.0.20240206161407-3a498b536766 + github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20240207111352-448d2ef842fc + github.com/smartcontractkit/chainlink/v2 v2.9.0-beta0.0.20240207111352-448d2ef842fc github.com/smartcontractkit/libocr v0.0.0-20240112202000-6359502d2ff1 github.com/stretchr/testify v1.8.4 github.com/testcontainers/testcontainers-go v0.23.0 diff --git a/integration-tests/go.sum b/integration-tests/go.sum index 2555ccfc3..ffc16dbb8 100644 --- a/integration-tests/go.sum +++ b/integration-tests/go.sum @@ -1407,10 +1407,10 @@ github.com/smartcontractkit/chainlink-testing-framework v1.23.2 h1:haXPd9Pg++Zs5 github.com/smartcontractkit/chainlink-testing-framework v1.23.2/go.mod h1:StIOdxvwd8AMO6xuBtmD6FQfJXktEn/mJJEr7728BTc= github.com/smartcontractkit/chainlink-vrf v0.0.0-20231120191722-fef03814f868 h1:FFdvEzlYwcuVHkdZ8YnZR/XomeMGbz5E2F2HZI3I3w8= github.com/smartcontractkit/chainlink-vrf v0.0.0-20231120191722-fef03814f868/go.mod h1:Kn1Hape05UzFZ7bOUnm3GVsHzP0TNrVmpfXYNHdqGGs= -github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20240207083727-35b472e8a2cc h1:kKx0SreanQZFdcQHxPdKV79IV9tFfywwccwCczkgAME= -github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20240207083727-35b472e8a2cc/go.mod h1:opo0lTT7joRRpM9kE6q+4TtBzPusErprtpe2gIoQldg= -github.com/smartcontractkit/chainlink/v2 v2.9.0-beta0.0.20240206161407-3a498b536766 h1:SWqHuUkCssUjKxmj9Ch+Yx7WX7c8sGUH0Ou1K+Xt66c= -github.com/smartcontractkit/chainlink/v2 v2.9.0-beta0.0.20240206161407-3a498b536766/go.mod h1:uUSqrDyfjfhXFc3rKC2VedHLlsmSu7JfggIOXuLYT/c= +github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20240207111352-448d2ef842fc h1:UbRtjNF3ots35TKyotPOVYN1kArIcodgqgTJN86rgyg= +github.com/smartcontractkit/chainlink/integration-tests v0.0.0-20240207111352-448d2ef842fc/go.mod h1:X4m/7YvLenwKBSYwlB8LcJAJqoMdO2zYxg+Dynl6tgw= +github.com/smartcontractkit/chainlink/v2 v2.9.0-beta0.0.20240207111352-448d2ef842fc h1:TuGePuBGADToEks7SrDb/1c4x9x/zZG8wVmmRNQ3cdE= +github.com/smartcontractkit/chainlink/v2 v2.9.0-beta0.0.20240207111352-448d2ef842fc/go.mod h1:c/S0O7VXxj9G//R1hXAX/2/tXzr1XLHJAZCFn17OAMg= github.com/smartcontractkit/go-plugin v0.0.0-20231003134350-e49dad63b306 h1:ko88+ZznniNJZbZPWAvHQU8SwKAdHngdDZ+pvVgB5ss= github.com/smartcontractkit/go-plugin v0.0.0-20231003134350-e49dad63b306/go.mod h1:w1sAEES3g3PuV/RzUrgow20W2uErMly84hhD3um1WL4= github.com/smartcontractkit/grpc-proxy v0.0.0-20230731113816-f1be6620749f h1:hgJif132UCdjo8u43i7iPN1/MFnu49hv7lFGFftCHKU= diff --git a/integration-tests/testconfig/configs_embed.go b/integration-tests/testconfig/configs_embed.go deleted file mode 100644 index 78090ab52..000000000 --- a/integration-tests/testconfig/configs_embed.go +++ /dev/null @@ -1,14 +0,0 @@ -//go:build embed -// +build embed - -package testconfig - -import "embed" - -//go:embed ocr2/ocr2.toml - -var embeddedConfigsFs embed.FS - -func init() { - areConfigsEmbedded = true -} diff --git a/integration-tests/testconfig/configs_noembed.go b/integration-tests/testconfig/configs_noembed.go deleted file mode 100644 index 95572c4a0..000000000 --- a/integration-tests/testconfig/configs_noembed.go +++ /dev/null @@ -1,12 +0,0 @@ -//go:build !embed -// +build !embed - -package testconfig - -import "embed" - -var embeddedConfigsFs embed.FS - -func init() { - areConfigsEmbedded = false -}