Skip to content

Commit 8abb368

Browse files
committed
Updates upload-artifact action to v4
Updates the `actions/upload-artifact` GitHub Action from v3 to v4 in the CI/CD workflows. This upgrade ensures the workflows benefit from the latest features, performance improvements, and security patches offered by the newer version of the action.
1 parent 14ed13f commit 8abb368

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/cd-pre.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ jobs:
7373
- name: Package extension
7474
run: yarn run package
7575
- name: Publish chromium artifact
76-
uses: actions/upload-artifact@v3
76+
uses: actions/upload-artifact@v4
7777
with:
7878
name: ${{ env.PACKAGE_NAME }}-chromium.zip
7979
path: ./${{ env.PACKAGE_NAME }}-chromium.zip
8080
- name: Publish firefox artifact
81-
uses: actions/upload-artifact@v3
81+
uses: actions/upload-artifact@v4
8282
with:
8383
name: ${{ env.FF_ADDON_NAME }}.xpi
8484
path: ./${{ env.FF_ADDON_NAME }}.xpi

.github/workflows/manual-publish-ff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Package extension
3030
run: yarn run package:firefox
3131
- name: Publish firefox artifact
32-
uses: actions/upload-artifact@v3
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: ${{ env.FF_ADDON_NAME }}.xpi
3535
path: ./${{ env.FF_ADDON_NAME }}.xpi

0 commit comments

Comments
 (0)