Skip to content

Commit 87890bc

Browse files
committed
add double quotes
1 parent 07de449 commit 87890bc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

project_name/.github/workflows/deps-update.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
- name: Run security audit
2323
id: audit
2424
run: |
25-
echo 'AUDIT<<EOF' >> $GITHUB_OUTPUT
25+
echo 'AUDIT<<EOF' >> "$GITHUB_OUTPUT"
2626
uv run just deps-audit 2>&1 || true
27-
echo 'EOF' >> $GITHUB_OUTPUT
27+
echo 'EOF' >> "$GITHUB_OUTPUT"
2828
- name: Check outdated packages
2929
id: outdated
3030
run: |
31-
echo 'OUTDATED<<EOF' >> $GITHUB_OUTPUT
31+
echo 'OUTDATED<<EOF' >> "$GITHUB_OUTPUT"
3232
uv run just deps-list-outdated 2>&1 || true
33-
echo 'EOF' >> $GITHUB_OUTPUT
33+
echo 'EOF' >> "$GITHUB_OUTPUT"
3434
- name: Create Pull Request
3535
uses: peter-evans/create-pull-request@v7
3636
with:

0 commit comments

Comments
 (0)