Skip to content

Commit 4a1c688

Browse files
committed
update dependencies
1 parent 2379706 commit 4a1c688

File tree

5 files changed

+37
-38
lines changed

5 files changed

+37
-38
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@master
13+
- uses: actions/checkout@v4
1414
- name: Setup Python
1515
uses: actions/setup-python@v5
1616
with:
@@ -30,9 +30,8 @@ jobs:
3030
pdm run coverage run
3131
pdm run coverage xml
3232
- name: Upload coverage to Codecov
33-
uses: codecov/codecov-action@v4
33+
uses: codecov/codecov-action@v5
3434
with:
35-
file: coverage.xml
3635
flags: unittests
3736
fail_ci_if_error: true
3837
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: chartboost/ruff-action@v1
1717
with:
18-
version: 0.9.2
18+
version: 0.9.4
1919
- uses: chartboost/ruff-action@v1
2020
with:
21-
version: 0.9.2
21+
version: 0.9.4
2222
args: format --check
2323
mypy:
2424
runs-on: ubuntu-latest

.github/workflows/pythonpublish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python
18-
uses: actions/setup-python@v3
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: '3.x'
2121
- name: Install dependencies

pdm.lock

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ classifiers = [
1414
"License :: OSI Approved :: MIT License",
1515
]
1616
dependencies = [
17-
"ytmusicapi>=1.9.1",
18-
"spotipy>=2.23.0",
17+
"ytmusicapi>=1.9.2",
18+
"spotipy>=2.25.0",
1919
"platformdirs>=3.2",
2020
]
2121
dynamic = ["version", "readme"]

0 commit comments

Comments
 (0)