Skip to content

Commit 62b4a8c

Browse files
authored
Update SRT to 1.5.4 (#74)
* use SRT 1.5.4 * Update nodejs.yml drop EoL NodeJS versions
1 parent fe1d9f9 commit 62b4a8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
node-version: [14.x, 16.x, 18.x]
10+
node-version: [18.x, 20.x, 22.x]
1111

1212
steps:
1313
- uses: actions/checkout@v3

scripts/build-srt-sdk.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const os = require('os');
1313
const env = process.env;
1414

1515
const SRT_REPO = env.NODE_SRT_REPO || "https://github.com/Haivision/srt.git";
16-
const SRT_CHECKOUT = "v1.5.2";
16+
const SRT_CHECKOUT = "v1.5.4";
1717

1818
const srtRepoPath = env.NODE_SRT_LOCAL_REPO ? `file://${path.join(__dirname, env.NODE_SRT_LOCAL_REPO)}` : SRT_REPO;
1919
const srtCheckout = env.NODE_SRT_CHECKOUT || SRT_CHECKOUT;

0 commit comments

Comments
 (0)