From b0a67fca43de56ede07ab2135d6b1c1de5be0386 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 17:36:34 +0000 Subject: [PATCH] chore(deps): update all non-major dependencies --- .config/dotnet-tools.json | 2 +- Dockerfile | 2 +- hack/compose.yaml | 4 ++-- hack/k8s/load-sample-data.yaml | 4 ++-- hack/k8s/pods.yaml | 2 +- hack/k8s/test-job.yaml | 2 +- .../FhirServerExporter.Tests.E2E.csproj | 10 +++++----- .../FhirServerExporter.Tests.csproj | 10 +++++----- src/FhirServerExporter/FhirServerExporter.csproj | 6 +++--- 9 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 0e2694d..c7b88c9 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "csharpier": { - "version": "0.30.2", + "version": "0.30.5", "commands": ["dotnet-csharpier"] }, "dotnet-outdated-tool": { diff --git a/Dockerfile b/Dockerfile index 18dd99d..c12babb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV ASPNETCORE_ENVIRONMENT="Production" \ ASPNETCORE_URLS="http://*:9797" \ DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 -FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0.100-noble@sha256:3bdd7f7fd595373d049c724f3a05ec8a8d9e27da05ba9cbe3ca6e0f3cc001e50 AS build +FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0.101-noble@sha256:991fd7c9c41fc12b47313bd2e1fb292c39e50fb50453ac11287b2877d3623d55 AS build WORKDIR "/build" ENV DOTNET_CLI_TELEMETRY_OPTOUT=1 diff --git a/hack/compose.yaml b/hack/compose.yaml index 4ef3fce..2a9080f 100644 --- a/hack/compose.yaml +++ b/hack/compose.yaml @@ -1,6 +1,6 @@ services: prometheus: - image: quay.io/prometheus/prometheus:v3.0.1@sha256:565ee86501224ebbb98fc10b332fa54440b100469924003359edf49cbce374bd + image: quay.io/prometheus/prometheus:v3.1.0@sha256:6559acbd5d770b15bb3c954629ce190ac3cbbdb2b7f1c30f0385c4e05104e218 ports: - "127.0.0.1:9090:9090" volumes: @@ -14,7 +14,7 @@ services: - "127.0.0.1:8082:8080" keycloak: - image: quay.io/keycloak/keycloak:26.0.6@sha256:a93d22e13b8641c683b7d5ccf6802a8ee177a21357ab7950228c7517ad1896c0 + image: quay.io/keycloak/keycloak:26.0.7@sha256:4388e2379b7e870a447adbe7b80bd61f5fbf04e925832b19669fda4957f05a81 environment: KEYCLOAK_ADMIN: admin # kics-scan ignore-line diff --git a/hack/k8s/load-sample-data.yaml b/hack/k8s/load-sample-data.yaml index 62eb402..c3b7fb0 100644 --- a/hack/k8s/load-sample-data.yaml +++ b/hack/k8s/load-sample-data.yaml @@ -12,7 +12,7 @@ spec: type: RuntimeDefault initContainers: - name: wait-for-fhir-server - image: docker.io/curlimages/curl:8.11.0@sha256:83a505ba2ba62f208ed6e410c268b7b9aa48f0f7b403c8108b9773b44199dbba + image: docker.io/curlimages/curl:8.11.1@sha256:c1fe1679c34d9784c1b0d1e5f62ac0a79fca01fb6377cdd33e90473c6f9f9a69 securityContext: allowPrivilegeEscalation: false runAsNonRoot: true @@ -37,7 +37,7 @@ spec: done; containers: - name: curl - image: curlimages/curl:8.11.0@sha256:83a505ba2ba62f208ed6e410c268b7b9aa48f0f7b403c8108b9773b44199dbba + image: curlimages/curl:8.11.1@sha256:c1fe1679c34d9784c1b0d1e5f62ac0a79fca01fb6377cdd33e90473c6f9f9a69 securityContext: allowPrivilegeEscalation: false runAsNonRoot: true diff --git a/hack/k8s/pods.yaml b/hack/k8s/pods.yaml index 4f7f0f1..e659603 100644 --- a/hack/k8s/pods.yaml +++ b/hack/k8s/pods.yaml @@ -96,7 +96,7 @@ spec: type: RuntimeDefault initContainers: - name: wait-for-fhir-server - image: docker.io/curlimages/curl:8.11.0@sha256:83a505ba2ba62f208ed6e410c268b7b9aa48f0f7b403c8108b9773b44199dbba + image: docker.io/curlimages/curl:8.11.1@sha256:c1fe1679c34d9784c1b0d1e5f62ac0a79fca01fb6377cdd33e90473c6f9f9a69 securityContext: allowPrivilegeEscalation: false runAsNonRoot: true diff --git a/hack/k8s/test-job.yaml b/hack/k8s/test-job.yaml index ce5ac54..cf08b00 100644 --- a/hack/k8s/test-job.yaml +++ b/hack/k8s/test-job.yaml @@ -11,7 +11,7 @@ spec: type: RuntimeDefault containers: - name: curl - image: curlimages/curl:8.11.0@sha256:83a505ba2ba62f208ed6e410c268b7b9aa48f0f7b403c8108b9773b44199dbba + image: curlimages/curl:8.11.1@sha256:c1fe1679c34d9784c1b0d1e5f62ac0a79fca01fb6377cdd33e90473c6f9f9a69 securityContext: allowPrivilegeEscalation: false runAsNonRoot: true diff --git a/src/FhirServerExporter.Tests.E2E/FhirServerExporter.Tests.E2E.csproj b/src/FhirServerExporter.Tests.E2E/FhirServerExporter.Tests.E2E.csproj index c23f0db..dccacc9 100644 --- a/src/FhirServerExporter.Tests.E2E/FhirServerExporter.Tests.E2E.csproj +++ b/src/FhirServerExporter.Tests.E2E/FhirServerExporter.Tests.E2E.csproj @@ -4,21 +4,21 @@ - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/FhirServerExporter.Tests/FhirServerExporter.Tests.csproj b/src/FhirServerExporter.Tests/FhirServerExporter.Tests.csproj index fe0a085..363dc00 100644 --- a/src/FhirServerExporter.Tests/FhirServerExporter.Tests.csproj +++ b/src/FhirServerExporter.Tests/FhirServerExporter.Tests.csproj @@ -4,24 +4,24 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/FhirServerExporter/FhirServerExporter.csproj b/src/FhirServerExporter/FhirServerExporter.csproj index 8876773..d61ff10 100644 --- a/src/FhirServerExporter/FhirServerExporter.csproj +++ b/src/FhirServerExporter/FhirServerExporter.csproj @@ -6,17 +6,17 @@ - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all