Skip to content

Commit

Permalink
Fix syntax error + upgrade Python in GA
Browse files Browse the repository at this point in the history
  • Loading branch information
Aemiii91 committed May 18, 2024
1 parent d05d9fb commit 43c3a2a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def generate_index(counts: dict):

for group_name, count in counts.items():
text, link = HEADER_LINKS[group_name]
buffer += f"### [{text} ({count})]({rel_path(link, ".")})\n\n"
buffer += f"### [{text} ({count})]({rel_path(link, '.')})\n\n"

buffer += "\n\n<p>&nbsp;</p>\n\n## New or updated themes\n\n"
recently_updated.sort(key=lambda item: item["ts"], reverse=True)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.10.5'
python-version: '3.12.3'
- name: Install Python dependencies
uses: py-actions/py-dependency-install@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10.5'
python-version: '3.12.3'
- name: Install Python dependencies
uses: py-actions/py-dependency-install@v4
with:
Expand Down

0 comments on commit 43c3a2a

Please sign in to comment.