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/ci.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/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b5541b1..83fc0623 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,10 +10,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 @@ -27,7 +27,7 @@ jobs: # Create Chrome artifacts - name: Create Chrome artifacts run: npm run build:chrome - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ChromeExtension path: dist @@ -39,7 +39,7 @@ jobs: # Create Firefox artifacts - name: Create Firefox artifacts run: npm run build:firefox - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: FirefoxExtension path: dist @@ -50,7 +50,7 @@ jobs: # Create Beta artifacts (Builds with the name changed to beta) - name: Create Chrome Beta artifacts run: npm run build:chrome -- --env stream=beta - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ChromeExtensionBeta path: dist @@ -60,7 +60,7 @@ jobs: - name: Create Firefox Beta artifacts run: npm run build:firefox -- --env stream=beta - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: FirefoxExtensionBeta path: dist |