Skip to content

Commit 49505c3

Browse files
Merge pull request #410 from rebeccacremona/updates
Update yt-dlp; drop support for node 18
2 parents 643b231 + 17b8786 commit 49505c3

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node: [ 18, 20, 22 ]
16+
node: [ 20, 22, 23 ]
1717

1818
name: Node.js ${{ matrix.node }}
1919

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node: [ 18, 20, 22 ]
19+
node: [ 20, 22, 23 ]
2020

2121
name: Node.js ${{ matrix.node }}
2222

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ sudo npx playwright install-deps chromium
112112
<summary><strong>Trouble installing the CLI?</strong></summary>
113113

114114

115-
- Make sure you are running Node JS 18+ (`node -v`)
115+
- Make sure you are running Node.js 20-23 (`node -v`)
116116
- Permissions issues are a common when installing `npm` packages globally for the first time.
117117
See [npm's documentation](https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally) for solutions.
118118
- On certain systems, using `install-deps` without the `chromium` argument might be necessary:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"assets/templates/*.njk"
2020
],
2121
"engines": {
22-
"node": ">=18.0.0"
22+
"node": ">=20.0.0 <24.0.0"
2323
},
2424
"standard": {
2525
"globals": [

postinstall.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#-------------------------------------------------------------------------------
44
mkdir ./executables/;
55

6-
# Pull yt-dlp (v2025.06.09)
7-
curl -L https://github.com/yt-dlp/yt-dlp/releases/download/2025.06.09/yt-dlp > ./executables/yt-dlp;
6+
# Pull yt-dlp (v2025.07.21)
7+
curl -L https://github.com/yt-dlp/yt-dlp/releases/download/2025.07.21/yt-dlp > ./executables/yt-dlp;
88
chmod a+x ./executables/yt-dlp;
99

1010
# Pull crip (v2.1.0)

0 commit comments

Comments
 (0)