diff options
author | Ajay <[email protected]> | 2022-06-13 13:34:39 -0400 |
---|---|---|
committer | Ajay <[email protected]> | 2022-06-13 13:34:39 -0400 |
commit | 3f421a2fb0ff3f981aa7826287dc798afa85be73 (patch) | |
tree | e8975b36e56ae9889c051c52d3c13344c4be311a /.github | |
parent | e94ce0ffef4ba125393731934f908f1c411ca1d6 (diff) | |
download | SponsorBlock-3f421a2fb0ff3f981aa7826287dc798afa85be73.tar.gz SponsorBlock-3f421a2fb0ff3f981aa7826287dc798afa85be73.zip |
Update node version in workflow
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 | ||||
-rw-r--r-- | .github/workflows/tests.yml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f1318d4..9df5e925 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '18' - run: npm ci - name: Copy configuration run: cp config.json.example config.json diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 79ea0e3d..943d54f5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '18' - run: npm ci - name: Copy configuration run: cp config.json.example config.json diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 83a957e4..d58501ab 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '16' + node-version: '18' - run: npm ci - name: Run tests |