From 92703f56769cf24734f46ae532293ee8ebd19514 Mon Sep 17 00:00:00 2001 From: Simon Guo Date: Fri, 7 Jun 2024 16:44:02 +0800 Subject: [PATCH] ci: upgrade all versions that are dependent on the workflow to the latest version (#490) * ci: upgrade all versions that are dependent on the workflow to the latest version * ci: remove node version --- .codesandbox/ci.json | 3 +- .github/workflows/codeql.yml | 56 +++++++++++++++++++++------- .github/workflows/gh-pages.yml | 12 +++--- .github/workflows/nodejs-ci.yml | 14 +++---- .github/workflows/nodejs-publish.yml | 10 ++--- .npmrc | 1 + 6 files changed, 63 insertions(+), 33 deletions(-) create mode 100644 .npmrc diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json index e9664de..5e2d7a1 100644 --- a/.codesandbox/ci.json +++ b/.codesandbox/ci.json @@ -1,4 +1,3 @@ { - "sandboxes": ["new", "vanilla"], - "node": "16" + "sandboxes": ["new", "vanilla"] } diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 6466b46..a2e7288 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -1,12 +1,24 @@ -name: "CodeQL" +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: 'CodeQL' on: push: - branches: [ "main", "gh-pages", "v3" ] + branches: [main,] pull_request: - branches: [ "main" ] + # The branches below must be a subset of the branches above + branches: [main] schedule: - - cron: "58 3 * * 1" + - cron: '16 1 * * 2' jobs: analyze: @@ -20,22 +32,40 @@ jobs: strategy: fail-fast: false matrix: - language: [ javascript ] + language: ['javascript'] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] + # Learn more: + # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed steps: - - name: Checkout - uses: actions/checkout@v3 + - name: Checkout repository + uses: actions/checkout@v4 + # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} - queries: +security-and-quality + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + # queries: ./path/to/local/query, your-org/your-repo/queries@main + # 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@v2 + uses: github/codeql-action/autobuild@v3 + + # ℹī¸ Command-line programs to run using the OS shell. + # 📚 https://git.io/JvXDl + + # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines + # and modify them (or add more) to build your code if your project + # uses a compiled language + + #- run: | + # make bootstrap + # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 - with: - category: "/language:${{ matrix.language }}" + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 1d5edc1..7dcd01d 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -16,18 +16,18 @@ jobs: concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v2.0.1 + - uses: pnpm/action-setup@v4 name: Install pnpm id: pnpm-install with: - version: 7.3.0 + version: 8 - name: Setup node - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: - node-version: '16.x' + node-version: '20.x' - name: Install run: pnpm i @@ -36,7 +36,7 @@ jobs: run: npm run build:docs - name: Deploy - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 if: github.ref == 'refs/heads/main' with: github_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/nodejs-ci.yml b/.github/workflows/nodejs-ci.yml index e06b51c..ef20a69 100644 --- a/.github/workflows/nodejs-ci.yml +++ b/.github/workflows/nodejs-ci.yml @@ -23,20 +23,20 @@ jobs: browser: [ChromeCi, Firefox] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v2.0.1 + - uses: pnpm/action-setup@v4 name: Install pnpm id: pnpm-install with: - version: 7.3.0 + version: 8 - - name: Use Node.js 16.x - uses: actions/setup-node@v1 + - name: Use Node.js LTS + uses: actions/setup-node@v4 with: - node-version: '16.x' + node-version: 'lts/*' - name: Cache Node.js modules - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/nodejs-publish.yml b/.github/workflows/nodejs-publish.yml index 6278725..93bd72d 100644 --- a/.github/workflows/nodejs-publish.yml +++ b/.github/workflows/nodejs-publish.yml @@ -11,18 +11,18 @@ jobs: name: 'Publish' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v2.0.1 + - uses: pnpm/action-setup@v4 name: Install pnpm id: pnpm-install with: - version: 7.3.0 + version: 8 # Setup .npmrc file to publish to npm - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v4 with: - node-version: '16.x' + node-version: '20.x' registry-url: 'https://registry.npmjs.org' - name: Install dependencies run: pnpm i diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..3e775ef --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +auto-install-peers=true