Skip to content

Commit ee30668

Browse files
committed
Fix inverted outdated condition
1 parent cb7b17c commit ee30668

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/codex-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Check if update is required
2424
id: check
2525
run: |
26-
if ! npm outdated "$CODEX_PACKAGE"; then
26+
if npm outdated "$CODEX_PACKAGE"; then
2727
echo "Package is up to date"
2828
exit 0
2929
fi

0 commit comments

Comments
 (0)