From 4abe2b799786b8d8e52bef5dee97051604e4f71d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 18:14:32 +0000 Subject: [PATCH] chore(deps): update all non-major dependencies --- .config/dotnet-tools.json | 2 +- Dockerfile | 8 ++--- docker-compose.yaml | 4 +-- grpc-utils.Dockerfile | 2 +- src/Vfps.Benchmarks/Vfps.Benchmarks.csproj | 2 +- .../Vfps.IntegrationTests.csproj | 8 ++--- src/Vfps.StressTests/Vfps.StressTests.csproj | 4 +-- src/Vfps.Tests/Vfps.Tests.csproj | 12 ++++---- src/Vfps/Vfps.csproj | 30 +++++++++---------- 9 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 00ad3d6..521eb02 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -7,7 +7,7 @@ "commands": ["dotnet-outdated"] }, "csharpier": { - "version": "0.26.3", + "version": "0.26.7", "commands": ["dotnet-csharpier"] } } diff --git a/Dockerfile b/Dockerfile index 3304707..4787185 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -# syntax=docker/dockerfile:1.4@sha256:9ba7531bd80fb0a858632727cf7a112fbfd19b17e94c4e84ced81e24ef1a0dbc +# syntax=docker/dockerfile:1.6@sha256:ac85f380a63b13dfcefa89046420e1781752bab202122f8f50032edf31be0021 # kics false positive "Missing User Instruction": # kics-scan ignore-line -FROM mcr.microsoft.com/dotnet/aspnet:8.0.0-jammy-chiseled@sha256:2f9b3da0c3de6b0db88a0f53356dd7022ce983609a3255aeefaf617c5ed32fa7 AS runtime +FROM mcr.microsoft.com/dotnet/aspnet:8.0.1-jammy-chiseled@sha256:fd65dd3a9fef62b12873e1f3db1d0cf4bffd3984c1656971a2bfcaab14224b67 AS runtime WORKDIR /opt/vfps EXPOSE 8080/tcp 8081/tcp 8082/tcp USER 65534:65534 @@ -11,7 +11,7 @@ ENV DOTNET_ENVIRONMENT="Production" \ ASPNETCORE_URLS="" \ DOTNET_BUNDLE_EXTRACT_BASE_DIR=/tmp -FROM mcr.microsoft.com/dotnet/sdk:8.0.100-jammy@sha256:7aacf0debfa3c612176a76c7d0be817e588b7cb5ca8f74e20484bb66e6ef1f79 AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0.101-jammy@sha256:76ef2395f453da03a90be9a9643cf75da3365503c9cde7bde7a98bee8f61900f AS build WORKDIR /build ENV DOTNET_CLI_TELEMETRY_OPTOUT=1 \ PATH="/root/.dotnet/tools:${PATH}" @@ -75,7 +75,7 @@ FROM build AS stress-test WORKDIR /opt/vfps-stress # https://github.com/hadolint/hadolint/pull/815 isn't yet in mega-linter # hadolint ignore=DL3022 -COPY --from=docker.io/bitnami/kubectl:1.28.2@sha256:0dadb8bb2e5a386c5881bc632f185733946d696b398d613861bb549da9043192 /opt/bitnami/kubectl/bin/kubectl /usr/bin/kubectl +COPY --from=docker.io/bitnami/kubectl:1.29.0@sha256:121fa926a1304f34439082df44b0bdbe6eee583760abd2ae67949a2987322fe9 /opt/bitnami/kubectl/bin/kubectl /usr/bin/kubectl COPY tests/chaos/chaos.yaml /tmp/ COPY --from=build-stress-test /build/publish . diff --git a/docker-compose.yaml b/docker-compose.yaml index 925f292..b2f245f 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,6 +1,6 @@ services: postgresql: - image: docker.io/library/postgres:16.0@sha256:a80d0c1b119cf3d6bab27f72782f16e47ab8534ced937fa813ec2ab26e1fd81e + image: docker.io/library/postgres:16.1@sha256:bb4e68544120c654e8b4f7ffd731be76b8d30ed7ac3a53f454290f02cf253b7c restart: unless-stopped deploy: resources: @@ -20,7 +20,7 @@ services: - "127.0.0.1:35432:5432" jaeger: - image: docker.io/jaegertracing/all-in-one:1.49.0@sha256:0edcea978eb4a631a0d9078f435908852f20013cf5d66908521c5ac2815aeb28 + image: docker.io/jaegertracing/all-in-one:1.53.0@sha256:60e65bfffe1f66aee96d6fc8b6bf65afd42016be5dcc09d2e15d8462f7d9409c restart: unless-stopped deploy: resources: diff --git a/grpc-utils.Dockerfile b/grpc-utils.Dockerfile index 8cd6a71..9cde705 100644 --- a/grpc-utils.Dockerfile +++ b/grpc-utils.Dockerfile @@ -1,4 +1,4 @@ -# syntax=docker/dockerfile:1.4@sha256:9ba7531bd80fb0a858632727cf7a112fbfd19b17e94c4e84ced81e24ef1a0dbc +# syntax=docker/dockerfile:1.6@sha256:ac85f380a63b13dfcefa89046420e1781752bab202122f8f50032edf31be0021 FROM docker.io/library/ubuntu:24.04@sha256:38d380071057443ebb6d65566c03a98eaec411e84e04e5e16cff49b1d6fdc9a0 SHELL ["/bin/bash", "-eo", "pipefail", "-c"] diff --git a/src/Vfps.Benchmarks/Vfps.Benchmarks.csproj b/src/Vfps.Benchmarks/Vfps.Benchmarks.csproj index 87abc67..98db389 100644 --- a/src/Vfps.Benchmarks/Vfps.Benchmarks.csproj +++ b/src/Vfps.Benchmarks/Vfps.Benchmarks.csproj @@ -6,7 +6,7 @@ - + diff --git a/src/Vfps.IntegrationTests/Vfps.IntegrationTests.csproj b/src/Vfps.IntegrationTests/Vfps.IntegrationTests.csproj index a275aa8..f07ddaf 100644 --- a/src/Vfps.IntegrationTests/Vfps.IntegrationTests.csproj +++ b/src/Vfps.IntegrationTests/Vfps.IntegrationTests.csproj @@ -11,10 +11,10 @@ - - - - + + + + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/Vfps.StressTests/Vfps.StressTests.csproj b/src/Vfps.StressTests/Vfps.StressTests.csproj index 249e5c8..0cd9ef2 100644 --- a/src/Vfps.StressTests/Vfps.StressTests.csproj +++ b/src/Vfps.StressTests/Vfps.StressTests.csproj @@ -6,10 +6,10 @@ - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/Vfps.Tests/Vfps.Tests.csproj b/src/Vfps.Tests/Vfps.Tests.csproj index cd3bb66..8459aff 100644 --- a/src/Vfps.Tests/Vfps.Tests.csproj +++ b/src/Vfps.Tests/Vfps.Tests.csproj @@ -10,18 +10,18 @@ all - + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - + + + - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/Vfps/Vfps.csproj b/src/Vfps/Vfps.csproj index 10755db..2150ca2 100644 --- a/src/Vfps/Vfps.csproj +++ b/src/Vfps/Vfps.csproj @@ -3,31 +3,31 @@ true - + - - - - - - - + + + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + - - + + - - - - + + + +