Skip to content

Commit

Permalink
ci: updated to nodejs-20
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed Feb 28, 2024
1 parent aa9ea8a commit bf9df30
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
path: ~\AppData\Local\pip\Cache

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -57,9 +57,9 @@ jobs:
needs: pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python "3.x"
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.x"

Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
continue-on-error: false

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
verbose: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.x"

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Remove canvasing from lower resolution (>32px) in Windows Cursor

### Changes

- ci: updated to `nodejs-20` in Github Actions

### Issue Fixes

- Fixed python string template in Windows uninstallation script, reported on: https://github.com/ful1e5/clickgen/commit/4fbf21b1d04755c9a6bd2b77b5b69f9ad1c1b56b.
Expand Down
2 changes: 0 additions & 2 deletions src/clickgen/writer/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
from itertools import chain
from typing import List, Tuple

from PIL import Image

from clickgen.cursors import CursorFrame

# .CUR FILE FORMAT
Expand Down

0 comments on commit bf9df30

Please sign in to comment.