Skip to content

Commit 9f8a885

Browse files
committed
update-project-version: Convert lingering bash syntax to Python
1 parent 694c9df commit 9f8a885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

update-project-version/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ runs:
7171
print("| Project | Version | Path |", file=output)
7272
print("|---------|---------|------|", file=output)
7373
for project in changed_projects:
74-
print(f"| {project_info[project]['name']} | {project_info[project]['version']} | {project} |") >> "$GITHUB_OUTPUT"
74+
print(f"| {project_info[project]['name']} | {project_info[project]['version']} | {project} |", file=output)
7575
print("EOF", file=output)
7676
shell: python
7777
- name: Create pull request

0 commit comments

Comments
 (0)