Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: 📥 Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -30,12 +30,12 @@ jobs:
cache: "pip"

- name: 📦 Setup Node.js 20
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: "20"

- name: 🔧 Cache pre-commit environments
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cache/pre-commit
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/prowlarr-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
env:
API_KEY: fakeapikey
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Setup Python
uses: actions/setup-python@v6
Expand All @@ -27,15 +27,15 @@ jobs:
cache: "pip"

- name: Setup Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: "18"

- name: Install Python dependencies
run: pip install -r requirements.txt

- name: Cache pre-commit hooks
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down
2 changes: 1 addition & 1 deletion lidarr/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ As of Lidarr v2, Authentication is Mandatory.
## How can I find a MusicBrainz ID?

1. [Search for your desired artist or album](https://musicbrainz.org/search) (use `Release Group` type for albums)
2. The MusicBrainz ID can be found under the "Details" tab:
2. The MusicBrainz ID can be found under the "Details" tab:
![musicbrainz_id_detail_tab.png](/images/musicbrainz_id_detail_tab.png)
3. Or at the end of the URL:
![musicbrainz_id_url.png](/images/musicbrainz_id_url.png)
Expand Down
Loading