Skip to content

Commit 0fec858

Browse files
authored
Update deps to address security vulnerabilities (#5873)
This PR updates dependencies to address security vulnerabilities ### Key changes - **GitHub Actions:** Updated `tj-actions/changed-files` from v44/v45 to v46 across all workflows - **Python package updates:** <img width="618" height="548" alt="image" src="https://github.com/user-attachments/assets/c48ccd41-55f4-4dd6-b43a-4eb921c28b7d" />
2 parents bde5de4 + 62bbd18 commit 0fec858

File tree

4 files changed

+589
-576
lines changed

4 files changed

+589
-576
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Verify changelog updated
22

3-
on:
3+
on:
44
pull_request_target:
55
types:
66
- opened
@@ -14,20 +14,20 @@ jobs:
1414

1515
- name: Get all updated Python files
1616
id: changed-python-files
17-
uses: tj-actions/changed-files@v44
17+
uses: tj-actions/changed-files@v46
1818
with:
1919
files: |
2020
**.py
2121
2222
- name: Check for the changelog update
2323
id: changelog-update
24-
uses: tj-actions/changed-files@v44
24+
uses: tj-actions/changed-files@v46
2525
with:
2626
files: docs/changelog.rst
27-
27+
2828
- name: Comment under the PR with a reminder
2929
if: steps.changed-python-files.outputs.any_changed == 'true' && steps.changelog-update.outputs.any_changed == 'false'
3030
uses: thollander/actions-comment-pull-request@v2
3131
with:
32-
message: 'Thank you for the PR! The changelog has not been updated, so here is a friendly reminder to check if you need to add an entry.'
33-
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
32+
message: 'Thank you for the PR! The changelog has not been updated, so here is a friendly reminder to check if you need to add an entry.'
33+
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: Get changed lyrics files
3939
id: lyrics-update
40-
uses: tj-actions/changed-files@v45
40+
uses: tj-actions/changed-files@v46
4141
with:
4242
files: |
4343
beetsplug/lyrics.py

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- name: Get changed docs files
2424
id: changed-doc-files
25-
uses: tj-actions/changed-files@v44
25+
uses: tj-actions/changed-files@v46
2626
with:
2727
files: |
2828
docs/**
2929
- name: Get changed python files
3030
id: raw-changed-python-files
31-
uses: tj-actions/changed-files@v44
31+
uses: tj-actions/changed-files@v46
3232
with:
3333
files: |
3434
**.py

0 commit comments

Comments
 (0)