From 160f41966fc70bac1e1a79cf18e19d749ce28598 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gr=C3=BCner?= <47506558+MegaRedHand@users.noreply.github.com> Date: Tue, 4 Feb 2025 18:45:04 -0300 Subject: [PATCH 1/3] chore!: downgrade Kurtosis API version to v1.4.3 --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index ead4b842..f78f57fe 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/Layr-Labs/avs-devnet go 1.22.4 require ( - github.com/kurtosis-tech/kurtosis/api/golang v1.4.4-0.20250116034716-84e2fe2b35f5 + github.com/kurtosis-tech/kurtosis/api/golang v1.4.3 github.com/schollz/progressbar/v3 v3.18.0 github.com/stretchr/testify v1.10.0 github.com/tidwall/gjson v1.18.0 diff --git a/go.sum b/go.sum index 1741edcc..07592cfc 100644 --- a/go.sum +++ b/go.sum @@ -40,8 +40,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/kurtosis-tech/kurtosis-portal/api/golang v0.0.0-20231031173452-349f1ec9a443 h1:jqFVT4FcZU+wG+y5FV+Xz9+IwNqSyredbcFKHfK2Kh8= github.com/kurtosis-tech/kurtosis-portal/api/golang v0.0.0-20231031173452-349f1ec9a443/go.mod h1:bWSMQK3WHVTGHX9CjxPAb/LtzcmfOxID2wdzakSWQxo= -github.com/kurtosis-tech/kurtosis/api/golang v1.4.4-0.20250116034716-84e2fe2b35f5 h1:nuOrhjuvt+EKttPNiOG/SlBHrL6XPmR0mXVKPl7n5hI= -github.com/kurtosis-tech/kurtosis/api/golang v1.4.4-0.20250116034716-84e2fe2b35f5/go.mod h1:9T22P7Vv3j5g6sbm78DxHQ4s9C4Cj3s9JjFQ7DFyYpM= +github.com/kurtosis-tech/kurtosis/api/golang v1.4.3 h1:CkrfwpBAOQ9TOCUrVWSv5C7d3hLBNjU4kAYSbL6EHf0= +github.com/kurtosis-tech/kurtosis/api/golang v1.4.3/go.mod h1:9T22P7Vv3j5g6sbm78DxHQ4s9C4Cj3s9JjFQ7DFyYpM= github.com/kurtosis-tech/kurtosis/contexts-config-store v0.0.0-20250115014340-593f9c2848c8 h1:3g5rIDhVjZP7Kkitt6kjZcTECHWp42XmloOKwetEN0k= github.com/kurtosis-tech/kurtosis/contexts-config-store v0.0.0-20250115014340-593f9c2848c8/go.mod h1:e/6F1JCyK1qVAit/9nQxzBF/EVja11Fc1lzjLeBcDw4= github.com/kurtosis-tech/kurtosis/grpc-file-transfer/golang v0.0.0-20250115014340-593f9c2848c8 h1:hg8eOxzOK2a8LbZ5rJKfnw4MgL2EncRkyvsPlmiYueQ= From 6763d688e79b9146067023081f1510a8cf1ffc71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gr=C3=BCner?= <47506558+MegaRedHand@users.noreply.github.com> Date: Tue, 4 Feb 2025 18:49:49 -0300 Subject: [PATCH 2/3] ci: pin kurtosis version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 984aebf6..c20d3f6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ concurrency: cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} env: - KURTOSIS_VERSION: 'latest' + KURTOSIS_VERSION: 'v1.4.3' GO_VERSION: '1.22.4' From 46efe319edb17141b769fdbcc733c61043e086c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gr=C3=BCner?= <47506558+MegaRedHand@users.noreply.github.com> Date: Tue, 4 Feb 2025 18:52:19 -0300 Subject: [PATCH 3/3] fix: remove leading 'v' --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c20d3f6d..3d14ad13 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ concurrency: cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} env: - KURTOSIS_VERSION: 'v1.4.3' + KURTOSIS_VERSION: '1.4.3' GO_VERSION: '1.22.4'