diff --git a/.docfx/Dockerfile.docfx b/.docfx/Dockerfile.docfx
index dedeef4..9b5f9a7 100644
--- a/.docfx/Dockerfile.docfx
+++ b/.docfx/Dockerfile.docfx
@@ -1,4 +1,6 @@
-FROM --platform=$BUILDPLATFORM nginx:1.28.0-alpine AS base
+ARG NGINX_VERSION=1.29.0-alpine
+
+FROM --platform=$BUILDPLATFORM nginx:${NGINX_VERSION} AS base
RUN rm -rf /usr/share/nginx/html/*
FROM --platform=$BUILDPLATFORM codebeltnet/docfx:2.78.3 AS build
@@ -8,7 +10,7 @@ ADD [".", "docfx"]
RUN cd docfx; \
docfx build
-FROM nginx:1.28.0-alpine AS final
+FROM nginx:${NGINX_VERSION} AS final
WORKDIR /usr/share/nginx/html
COPY --from=build /build/docfx/wwwroot /usr/share/nginx/html
diff --git a/.github/workflows/pipelines.yml b/.github/workflows/pipelines.yml
index b7f15d0..5a8046f 100644
--- a/.github/workflows/pipelines.yml
+++ b/.github/workflows/pipelines.yml
@@ -64,7 +64,7 @@ jobs:
sonarcloud:
name: call-sonarcloud
needs: [build,test]
- uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v1
+ uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v2
with:
organization: geekle
projectKey: asp-versioning
@@ -82,7 +82,7 @@ jobs:
codeql:
name: call-codeql
needs: [build,test]
- uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v1
+ uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v2
permissions:
security-events: write
diff --git a/.nuget/Codebelt.Extensions.Asp.Versioning/PackageReleaseNotes.txt b/.nuget/Codebelt.Extensions.Asp.Versioning/PackageReleaseNotes.txt
index baeeeb3..f804bc6 100644
--- a/.nuget/Codebelt.Extensions.Asp.Versioning/PackageReleaseNotes.txt
+++ b/.nuget/Codebelt.Extensions.Asp.Versioning/PackageReleaseNotes.txt
@@ -1,4 +1,10 @@
-Version 9.0.4
+Version 9.0.5
+Availability: .NET 9 and .NET 8
+
+# ALM
+- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
+
+Version 9.0.4
Availability: .NET 9 and .NET 8
# ALM
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e742cc5..c2e41cb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,10 @@ For more details, please refer to `PackageReleaseNotes.txt` on a per assembly ba
> [!NOTE]
> Changelog entries prior to version 8.4.0 was migrated from previous versions of Cuemon.Extensions.Asp.Versioning.
+## [9.0.5] - 2025-07-11
+
+This is a service update that focuses on package dependencies.
+
## [9.0.4] - 2025-06-16
This is a service update that focuses on package dependencies.
diff --git a/Directory.Packages.props b/Directory.Packages.props
index 876f4c9..c1003d9 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -7,13 +7,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/testenvironments.json b/testenvironments.json
index 9d87973..e523c07 100644
--- a/testenvironments.json
+++ b/testenvironments.json
@@ -9,7 +9,7 @@
{
"name": "Docker-Ubuntu",
"type": "docker",
- "dockerImage": "gimlichael/ubuntu-testrunner:net8.0.411-9.0.301"
+ "dockerImage": "gimlichael/ubuntu-testrunner:net8.0.412-9.0.302"
}
]
}