Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "🚀 Checkout"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: "👷 Install dependencies"
run: npm install
Expand All @@ -21,7 +21,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: "Upload artifact"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: web-ext-artifacts
path: web-ext-artifacts
Expand All @@ -32,7 +32,7 @@ jobs:
needs: build
steps:
- name: "⬇️ Download artifacts"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: web-ext-artifacts

Expand All @@ -54,7 +54,7 @@ jobs:
needs: build
steps:
- name: "⬇️ Download Firefox artifact"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: web-ext-artifacts

Expand All @@ -70,7 +70,7 @@ jobs:
needs: build
steps:
- name: "⬇️ Download Chrome artifact"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: web-ext-artifacts

Expand Down