diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a727e97..c9253e6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ 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 @@ -22,7 +22,7 @@ jobs: - 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 @@ -32,7 +32,7 @@ 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 @@ -40,7 +40,7 @@ jobs: - 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 @@ -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 @@ -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 @@ -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: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ff1b164..897dc4a 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -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. @@ -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 @@ -68,4 +68,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4