From b5361fed217651b4d855961b47481209ac0745a0 Mon Sep 17 00:00:00 2001 From: Marcos Nils <1578458+marcosnils@users.noreply.github.com> Date: Tue, 20 Aug 2024 05:48:50 -0300 Subject: [PATCH] ci: bump dagger to the latest version (#1588) this commit also adds an `includes` field to the dagger.json so the initial SDK code generation runs faster as only the Dagger module source is included Signed-off-by: Marcos Lilljedahl --- dagger.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dagger.json b/dagger.json index e1ed52f..5352c9b 100644 --- a/dagger.json +++ b/dagger.json @@ -1,6 +1,9 @@ { "name": "client_golang", "sdk": "go", + "includes": [ + "dagger" + ], "dependencies": [ { "name": "golang", @@ -8,5 +11,5 @@ } ], "source": "dagger", - "engineVersion": "v0.12.0" + "engineVersion": "v0.12.5" }