diff options
author | Brian Choromanski <[email protected]> | 2024-10-01 22:34:11 -0400 |
---|---|---|
committer | Brian Choromanski <[email protected]> | 2024-10-01 22:34:11 -0400 |
commit | 7cd70899808d31a0e455903d3f7343c8b95849f4 (patch) | |
tree | 6d0684ab8410ba908cb55c83f3aeb31ad8378db8 | |
parent | 61f5d7a9027db8f03210d3cdbdabe6c6be6fbd3d (diff) | |
download | SponsorBlock-7cd70899808d31a0e455903d3f7343c8b95849f4.tar.gz SponsorBlock-7cd70899808d31a0e455903d3f7343c8b95849f4.zip |
Updated upload-artifact to v4
-rw-r--r-- | .github/workflows/ci.yml | 8 | ||||
-rw-r--r-- | .github/workflows/release.yml | 4 | ||||
-rw-r--r-- | .github/workflows/tests.yml | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0ecb6b1..83fc0623 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0476b5d0..54a0ddae 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -108,7 +108,7 @@ jobs: # Firefox Beta - 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 @@ -125,7 +125,7 @@ jobs: run: sudo apt-get install rename - name: Rename signed file run: cd ./web-ext-artifacts ; rename 's/.*/FirefoxSignedInstaller.xpi/' * - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: FirefoxExtensionSigned.xpi path: ./web-ext-artifacts/FirefoxSignedInstaller.xpi diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fd1ae514..45611d9d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 |