From cdf6e1d06fa7687b85303e9eccb498500f3593cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Jun 2024 12:26:31 +0000 Subject: [PATCH 1/2] Bump github.com/vektah/gqlparser/v2 from 2.5.11 to 2.5.15 in /ci Bumps [github.com/vektah/gqlparser/v2](https://github.com/vektah/gqlparser) from 2.5.11 to 2.5.15. - [Release notes](https://github.com/vektah/gqlparser/releases) - [Commits](https://github.com/vektah/gqlparser/compare/v2.5.11...v2.5.15) --- updated-dependencies: - dependency-name: github.com/vektah/gqlparser/v2 dependency-type: indirect ... Signed-off-by: dependabot[bot] --- ci/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/go.mod b/ci/go.mod index 17fc926..ebb1fea 100644 --- a/ci/go.mod +++ b/ci/go.mod @@ -13,7 +13,7 @@ require ( github.com/google/uuid v1.6.0 // indirect github.com/mitchellh/go-homedir v1.1.0 // indirect github.com/sosodev/duration v1.2.0 // indirect - github.com/vektah/gqlparser/v2 v2.5.11 // indirect + github.com/vektah/gqlparser/v2 v2.5.15 // indirect go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect From 5c77b7f36d89cd5bc823a2634a2f555aeeb8f3b3 Mon Sep 17 00:00:00 2001 From: Theis Date: Thu, 4 Jul 2024 12:10:16 +0200 Subject: [PATCH 2/2] tried to update golang version for dagger workflows --- ci/build_test_release.go | 2 +- ci/test_on_push.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/build_test_release.go b/ci/build_test_release.go index aed7cbb..aabc2d3 100644 --- a/ci/build_test_release.go +++ b/ci/build_test_release.go @@ -24,7 +24,7 @@ func main() { // mount the source code directory on the host // at /src in the container source := client.Container(). - From("golang:1.21"). + From("golang:1.22"). WithDirectory("/src", client.Host().Directory(".", dagger.HostDirectoryOpts{ Exclude: []string{}, })).WithMountedCache("/src/dagger_dep_cache/go_dep", goCache) diff --git a/ci/test_on_push.go b/ci/test_on_push.go index 7a4e37d..efc04ca 100644 --- a/ci/test_on_push.go +++ b/ci/test_on_push.go @@ -24,7 +24,7 @@ func main() { // mount the source code directory on the host // at /src in the container source := client.Container(). - From("golang:1.21"). + From("golang:1.22"). WithDirectory("/src", client.Host().Directory(".", dagger.HostDirectoryOpts{ Exclude: []string{"build/"}, })).WithMountedCache("/src/dagger_dep_cache/go_dep", goCache)