From 2ffbac85944621caf6f63251cc8905951f864587 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 17:39:58 +0000 Subject: [PATCH] Bump the docker-plugin group across 1 directory with 2 updates Bumps the docker-plugin group with 2 updates in the /cmd/plugin directory: golang and fluent/fluent-bit. Updates `golang` from 1.20.2 to 1.22.3 Updates `fluent/fluent-bit` from 2.2.2 to 3.0.6 --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-plugin - dependency-name: fluent/fluent-bit dependency-type: direct:production update-type: version-update:semver-major dependency-group: docker-plugin ... Signed-off-by: dependabot[bot] --- cmd/plugin/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/plugin/Dockerfile b/cmd/plugin/Dockerfile index db63bd0..ef4c6eb 100644 --- a/cmd/plugin/Dockerfile +++ b/cmd/plugin/Dockerfile @@ -1,12 +1,12 @@ # We can't go past 1.20.2 until this issue is solved: https://github.com/golang/go/issues/62130#issuecomment-1687335898 -FROM golang:1.20.2 as build +FROM golang:1.22.3 as build WORKDIR /root COPY go.mod go.sum ./ RUN go mod download COPY . . RUN make build-plugin -FROM fluent/fluent-bit:2.2.2 +FROM fluent/fluent-bit:3.0.6 COPY --from=build /root/out_clickhouse.so /fluent-bit/bin/ EXPOSE 2020 CMD ["/fluent-bit/bin/fluent-bit", "--plugin", "/fluent-bit/bin/out_clickhouse.so", "--config", "/fluent-bit/etc/fluent-bit.conf"]