diff options
author | Ajay Ramachandran <[email protected]> | 2024-10-01 23:15:22 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2024-10-01 23:15:22 -0400 |
commit | 4044a22e0490139b14c05b7d3bf54ee33ed143ac (patch) | |
tree | 7653dfe6efb14338ddae8ab12dc47d13bde26ac7 /.github/workflows/tests.yml | |
parent | 3c2c140eb53e379384113806f5a618f1c8f72168 (diff) | |
parent | 5163b3362f17cb7da9b8434f9e5fe92eab93db17 (diff) | |
download | SponsorBlock-4044a22e0490139b14c05b7d3bf54ee33ed143ac.tar.gz SponsorBlock-4044a22e0490139b14c05b7d3bf54ee33ed143ac.zip |
Merge pull request #2124 from Choromanski/feature/node-20-deprecated
Node deprecated versions
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r-- | .github/workflows/tests.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8773c147..dac0211f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,10 +9,10 @@ jobs: steps: # Initialization - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: '18' - run: npm ci @@ -25,7 +25,7 @@ jobs: - name: Upload results on fail if: ${{ failure() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Test Results path: ./test-results
\ No newline at end of file |