diff options
author | Ajay <[email protected]> | 2024-10-02 03:05:38 -0400 |
---|---|---|
committer | Ajay <[email protected]> | 2024-10-02 03:05:38 -0400 |
commit | 2691dc5df5d503259a98e3e29bc69b0883561ab0 (patch) | |
tree | 7e58017d3f39ca86e66216d9323c2b14af7fd066 /.github/workflows/ci.yml | |
parent | 31ef4f39bfba304578533db64ed7a09ae9457ce9 (diff) | |
parent | 4044a22e0490139b14c05b7d3bf54ee33ed143ac (diff) | |
download | SponsorBlock-2691dc5df5d503259a98e3e29bc69b0883561ab0.tar.gz SponsorBlock-2691dc5df5d503259a98e3e29bc69b0883561ab0.zip |
Merge branch 'master' of https://github.com/ajayyy/SponsorBlock5.9.4
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 |