From 94922f85c44140a7fea90f547b2581331e8a2a5e Mon Sep 17 00:00:00 2001 From: jiaomh <168526697+Jiaohm@users.noreply.github.com> Date: Tue, 16 Jul 2024 10:36:39 +0800 Subject: [PATCH 1/3] Update codeql-analysis.yml --- .github/workflows/codeql-analysis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 40ff59b0b..4c1cf7144 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,11 +35,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + 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 }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -50,7 +50,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@v2 + uses: github/codeql-action/autobuild@v3 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -64,4 +64,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 From 0602a369dc26eac7fee000433411fa016c325876 Mon Sep 17 00:00:00 2001 From: jiaomh <168526697+Jiaohm@users.noreply.github.com> Date: Tue, 16 Jul 2024 10:37:31 +0800 Subject: [PATCH 2/3] Update gh-pages.yml --- .github/workflows/gh-pages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index f86e53ea6..09448aa87 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -14,14 +14,14 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: n1hility/cancel-previous-runs@v2 + - uses: n1hility/cancel-previous-runs@v3 with: token: ${{ secrets.GITHUB_TOKEN }} - uses: actions/checkout@master with: persist-credentials: false - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} repo-token: ${{ secrets.GITHUB_TOKEN }} @@ -46,7 +46,7 @@ jobs: NODE_OPTIONS: '--max-old-space-size=8192' run: | npm run coverage - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 with: name: codecov-umbrella # optional fail_ci_if_error: false # optional (default = false) From e88177436603f88b828ae49effaad9c571573ef6 Mon Sep 17 00:00:00 2001 From: jiaomh <168526697+Jiaohm@users.noreply.github.com> Date: Tue, 16 Jul 2024 10:38:07 +0800 Subject: [PATCH 3/3] Update pr-test.yml --- .github/workflows/pr-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index 8a2d278c2..9e869ac1b 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -14,11 +14,11 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: persist-credentials: false - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} repo-token: ${{ secrets.GITHUB_TOKEN }}