Skip to content

Commit 42735e0

Browse files
joperezrradical
authored andcommitted
Add error handling for package updates in workflow (#8390)
1 parent 4a3a753 commit 42735e0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/update-dependencies.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ jobs:
3131
run: dotnet tool install --global dotnet-outdated-tool
3232

3333
- name: Update packages
34-
run: dotnet outdated --no-restore -u ./Aspire.sln
34+
continue-on-error: true
35+
run: dotnet outdated --no-restore -u ./Aspire.sln || echo "Some dependencies could not be updated, but continuing workflow."
3536

3637
- name: Revert all changes except Directory.Packages.props files
3738
run: |

0 commit comments

Comments
 (0)