From 4f13eafd01362c7465e2b17bdc63228166cc8881 Mon Sep 17 00:00:00 2001 From: Ali Bahrami Date: Fri, 19 Jun 2026 11:54:32 +0200 Subject: [PATCH 1/2] fix: update nuget packages --- AutoNumber/AutoNumber.csproj | 4 ++-- Directory.Packages.props | 24 ++++++++++++------------ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/AutoNumber/AutoNumber.csproj b/AutoNumber/AutoNumber.csproj index 0347039..41424e9 100644 --- a/AutoNumber/AutoNumber.csproj +++ b/AutoNumber/AutoNumber.csproj @@ -20,8 +20,8 @@ true * Upgraded to .NET 10.0 and .NET 8.0 (dropped .NET 6.0 and netstandard) * Implemented Central Package Management (CPM) -* Updated Azure.Storage.Blobs to 12.27.0 -* Updated Microsoft.Extensions packages to 10.0.3 +* Updated Azure.Storage.Blobs to 12.29.0 +* Updated Microsoft.Extensions packages to 10.0.9 * Updated all test packages to latest versions * Updated GitHub Actions to support .NET 10.0 AzureAutoNumber diff --git a/Directory.Packages.props b/Directory.Packages.props index f679b37..4a63fa3 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -3,20 +3,20 @@ true - - - - - - - - - + + + + + + + + + - - - + + + From c4384584f2293ccc24f1f3fe67a859175a2b183e Mon Sep 17 00:00:00 2001 From: Ali Bahrami Date: Fri, 19 Jun 2026 12:01:04 +0200 Subject: [PATCH 2/2] fix: pack bumped version in ci --- .github/workflows/dotnet.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 6f2cbf9..edd067d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -6,12 +6,14 @@ on: paths: - '**.cs' - '**.csproj' + - 'Directory.Packages.props' - '.github/workflows/**.yml' pull_request: branches: [ main ] paths: - '**.cs' - '**.csproj' + - 'Directory.Packages.props' - '.github/workflows/**.yml' permissions: @@ -169,6 +171,12 @@ jobs: with: fetch-depth: 0 + - name: Use bumped version on main + if: github.ref == 'refs/heads/main' && needs.version-bump.outputs.changed == 'true' + run: | + git fetch origin main + git checkout origin/main + - name: Setup .NET uses: actions/setup-dotnet@v4 with: