Skip to content

Commit

Permalink
chore(dependencies): fix dependency upgrade workflow (#762)
Browse files Browse the repository at this point in the history
Quotes were not passed all the way down to the underlying `ncu` comamnd
as expected.
  • Loading branch information
Kyle Laker authored Apr 10, 2023
1 parent 1156fb4 commit e357459
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ jobs:
ncu --deep --upgrade --filter "react* @testing-library/react" --target minor
ncu --deep --upgrade --reject "react* @testing-library/react"
# Upgrade packaes everyhwere (same as we just did but with lerna)
lerna exec --parallel ncu -- --deep --upgrade --filter "react* @testing-library/react" --target minor
lerna exec --parallel ncu -- --deep --upgrade --reject "react* @testing-library/react"
lerna exec --parallel ncu -- --deep --upgrade --filter "'react* @testing-library/react'" --target minor
lerna exec --parallel ncu -- --deep --upgrade --reject "'react* @testing-library/react'"
- name: Install updated dependencies
run: |-
Expand Down

0 comments on commit e357459

Please sign in to comment.