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
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Use Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: '16.x'
- run: npm ci
- run: npm run build -- --env=version=$MAJOR_VER.$MINOR_VER.${{ github.run_number }}
- name: Zip chrome
run: zip -qq -r chrome.zip *
working-directory: dist/chrome_prod
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: chrome
path: dist/chrome_prod/chrome.zip
Expand All @@ -32,15 +32,15 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Use Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: '16.x'
- run: npm ci
- run: npm run build_ff -- --env=version=$MAJOR_VER.$MINOR_VER.${{ github.run_number }}
- name: Zip firefox
run: zip -qq -r firefox.zip *
working-directory: dist/firefox_prod
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: firefox
path: dist/firefox_prod/firefox.zip
Expand All @@ -51,7 +51,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Download extension
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: chrome
- name: Publish Chrome
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Zip source
run: zip -qq -r src.zip *
- name: Download extension
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: firefox
- name: Publish Firefox
Expand All @@ -92,7 +92,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Download extension
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
- name: Release
uses: softprops/action-gh-release@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -54,7 +54,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3
uses: github/codeql-action/autobuild@v4

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -68,4 +68,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4