From 1bcddcdb5fe3465ed66ad86b0a99bd3f9b9d1203 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Mar 2023 14:00:20 +0000 Subject: [PATCH] chore(deps): bump golang from 1.20.1 to 1.20.2 in /test/integration Bumps golang from 1.20.1 to 1.20.2. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- test/integration/integration.dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/integration.dockerfile b/test/integration/integration.dockerfile index 3a6af263d..3e3c59e43 100644 --- a/test/integration/integration.dockerfile +++ b/test/integration/integration.dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20.1 as build +FROM golang:1.20.2 as build WORKDIR /app @@ -17,7 +17,7 @@ RUN go run github.com/prisma/prisma-client-go db push --schema schemax.prisma RUN go build -o /app/main . # start a new stage to test if the runtime fetching works -FROM golang:1.20.1 +FROM golang:1.20.2 WORKDIR /app