Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Install modules
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Install modules
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Build package
run: npm run dev
- name: Chrome extension upload action
uses: mnao305/chrome-extension-upload@v4.0.1
uses: mnao305/chrome-extension-upload@v6.0.0
with:
file-path: build/*.zip
extension-id: ${{ secrets.CHROMESTORE_DEV_ID }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Install modules
Expand All @@ -18,7 +18,7 @@ jobs:
- name: Build Package
run: npm run prod
- name: Chrome extension upload action
uses: mnao305/chrome-extension-upload@v4.0.1
uses: mnao305/chrome-extension-upload@v6.0.0
with:
file-path: build/*.zip
extension-id: ${{ secrets.CHROMESTORE_PROD_ID }}
Expand Down