From fac438cc7acaf1d3e0dca2925d719e88fb11be17 Mon Sep 17 00:00:00 2001 From: Jose Perez Rodriguez Date: Fri, 28 Mar 2025 15:41:38 -0700 Subject: [PATCH] Add error handling for package updates in workflow --- .github/workflows/update-dependencies.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index b179935706d..24c70868b6b 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -30,7 +30,8 @@ jobs: run: dotnet tool install --global dotnet-outdated-tool - name: Update packages - run: dotnet outdated --no-restore -u ./Aspire.sln + continue-on-error: true + run: dotnet outdated --no-restore -u ./Aspire.sln || echo "Some dependencies could not be updated, but continuing workflow." - name: Revert all changes except Directory.Packages.props run: |