diff --git a/.github/workflows/check-action-file.yaml b/.github/workflows/check-action-file.yaml index 64a1c00..1324a86 100644 --- a/.github/workflows/check-action-file.yaml +++ b/.github/workflows/check-action-file.yaml @@ -18,7 +18,7 @@ jobs: contents: read runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Check for any changed workflows id: check-for-changed-workflows uses: tj-actions/changed-files@v47 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ee5dfd3..ddc3b1a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -74,7 +74,7 @@ jobs: echo "START_TIME=${time}" >> $GITHUB_OUTPUT echo "ACTION_LINK=${action_link}" >> $GITHUB_OUTPUT - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: "3" repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -171,7 +171,7 @@ jobs: name: UT Test on Darwin/x86 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: "3" repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -209,7 +209,7 @@ jobs: runs-on: ubuntu-22.04 name: SCA Test on Ubuntu/x86 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: "3" repository: ${{ github.event.pull_request.head.repo.full_name }} diff --git a/.github/workflows/e2e-compose.yaml b/.github/workflows/e2e-compose.yaml index a91ab92..5e93e6d 100644 --- a/.github/workflows/e2e-compose.yaml +++ b/.github/workflows/e2e-compose.yaml @@ -22,7 +22,7 @@ jobs: echo "=========================================" sudo df -h /* - name: checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: "3" repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -100,7 +100,7 @@ jobs: # For more information see: # - https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. # Please update the following actions to use Node.js 16: actions/checkout@v3 - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tester path: ./mo-tester @@ -184,7 +184,7 @@ jobs: echo "=========================================" sudo df -h /* - name: checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: "3" repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -248,7 +248,7 @@ jobs: sudo docker system df -v; - name: Clone test-tool repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tester path: ./mo-tester diff --git a/.github/workflows/e2e-standalone.yaml b/.github/workflows/e2e-standalone.yaml index 6f75be9..408d82f 100644 --- a/.github/workflows/e2e-standalone.yaml +++ b/.github/workflows/e2e-standalone.yaml @@ -12,7 +12,7 @@ jobs: timeout-minutes: 90 steps: - name: checkout head - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: "3" path: ./head @@ -44,7 +44,7 @@ jobs: cd $GITHUB_WORKSPACE/head ./optools/run_bvt.sh $GITHUB_WORKSPACE/head launch - name: Clone test-tool repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tester path: ./mo-tester @@ -147,7 +147,7 @@ jobs: mo_reuse_enable_checker: true steps: - name: checkout head - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: ./head repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -178,7 +178,7 @@ jobs: cd $GITHUB_WORKSPACE/head ./optools/run_bvt.sh $GITHUB_WORKSPACE/head launch-dynamic-with-proxy -with-proxy - name: Clone test-tool repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tester path: ./mo-tester @@ -235,7 +235,7 @@ jobs: mo_reuse_enable_checker: true steps: - name: checkout head - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: "3" path: ./head @@ -271,7 +271,7 @@ jobs: ./optools/run_bvt.sh $GITHUB_WORKSPACE/head launch - name: Clone test-tool repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tester path: ./mo-tester diff --git a/.github/workflows/e2e-upgrade.yaml b/.github/workflows/e2e-upgrade.yaml index 64c077e..eeba4b8 100644 --- a/.github/workflows/e2e-upgrade.yaml +++ b/.github/workflows/e2e-upgrade.yaml @@ -21,14 +21,14 @@ jobs: steps: - name: checkout head - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: ./head repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} - name: checkout upstream - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: ./upstream repository: ${{ github.event.pull_request.base.repo.full_name }} @@ -81,7 +81,7 @@ jobs: sleep 60; - name: Clone test-tool repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tester path: ./mo-tester @@ -227,7 +227,7 @@ jobs: steps: - name: Checkout Head - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: ./head repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -244,7 +244,7 @@ jobs: echo "tag=$LATEST_RELEASE_TAG" >> $GITHUB_OUTPUT - name: Checkout Upstream Release - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: ./upstream repository: ${{ inputs.release-repo }} @@ -297,7 +297,7 @@ jobs: sleep 60; - name: Clone test-tool repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tester path: ./mo-tester diff --git a/.github/workflows/image-build.yaml b/.github/workflows/image-build.yaml index 644dee1..a35ef7e 100644 --- a/.github/workflows/image-build.yaml +++ b/.github/workflows/image-build.yaml @@ -46,7 +46,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 1 diff --git a/.github/workflows/merge-trigger-standalone.yaml b/.github/workflows/merge-trigger-standalone.yaml index f12607e..8c26a27 100644 --- a/.github/workflows/merge-trigger-standalone.yaml +++ b/.github/workflows/merge-trigger-standalone.yaml @@ -18,7 +18,7 @@ jobs: mo_reuse_enable_checker: true steps: - name: checkout matrixorigin/matrixone - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: ./matrixone - name: Set up Go @@ -58,7 +58,7 @@ jobs: ./optools/run_bvt.sh $GITHUB_WORKSPACE/matrixone launch - name: Clone test-tool repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tester path: ./mo-tester @@ -131,7 +131,7 @@ jobs: mo_reuse_enable_checker: true steps: - name: checkout head - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: ./head - name: Set up Go @@ -155,7 +155,7 @@ jobs: cd $GITHUB_WORKSPACE/head ./optools/run_bvt.sh $GITHUB_WORKSPACE/head launch - name: Clone test-tool repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tester path: ./mo-tester diff --git a/.github/workflows/merge-trigger-tke.yaml b/.github/workflows/merge-trigger-tke.yaml index 4de134e..b238c04 100644 --- a/.github/workflows/merge-trigger-tke.yaml +++ b/.github/workflows/merge-trigger-tke.yaml @@ -41,7 +41,7 @@ jobs: steps: - name: Clone Repo Matrixorigin/Matrixone if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: ./matrixone - name: Login to TCR @@ -123,7 +123,7 @@ jobs: steps: - name: Clone Repo Matrixorigin/Matrixone if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: ./matrixone - name: Clean TKE ENV @@ -272,7 +272,7 @@ jobs: steps: - name: Clone MO-Tester if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tester token: ${{secrets.TOKEN_ACTION}} @@ -280,7 +280,7 @@ jobs: ref: main - name: Clone matrixone Repo if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: ./matrixone - name: Set JAVA PATH @@ -325,7 +325,7 @@ jobs: steps: - name: Clone mo-load-data Repo if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-load-data token: ${{secrets.TOKEN_ACTION}} @@ -334,7 +334,7 @@ jobs: - name: Clone mo-ssb Repo if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-ssb token: ${{secrets.TOKEN_ACTION}} @@ -343,7 +343,7 @@ jobs: - name: Clone mo-tpch Repo if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tpch token: ${{secrets.TOKEN_ACTION}} @@ -351,7 +351,7 @@ jobs: ref: main - name: Clone mo-night-regression Repo if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-nightly-regression token: ${{secrets.TOKEN_ACTION}} @@ -546,7 +546,7 @@ jobs: steps: - name: Clone mo-load Repo if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-load token: ${{secrets.TOKEN_ACTION}} @@ -554,7 +554,7 @@ jobs: ref: "1.0" - name: Clone mo-night-regression Repo if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-nightly-regression token: ${{secrets.TOKEN_ACTION}} @@ -667,7 +667,7 @@ jobs: steps: - name: Clone mo-load-data Repo if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-load-data token: ${{secrets.TOKEN_ACTION}} @@ -676,7 +676,7 @@ jobs: - name: Clone mo-tpcc Repo if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tpcc token: ${{secrets.TOKEN_ACTION}} @@ -684,7 +684,7 @@ jobs: ref: main - name: Clone mo-night-regression Repo if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-nightly-regression token: ${{secrets.TOKEN_ACTION}} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 08f118f..df9f526 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout source - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Get release id: get_release uses: bruceadams/get-release@v1.3.2 @@ -100,7 +100,7 @@ jobs: runs-on: arm64-mo-guangzhou-2xlarge16 steps: - name: Checkout source - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Get release id: get_release uses: bruceadams/get-release@v1.3.2 @@ -167,7 +167,7 @@ jobs: done exit 1; - name: Checkout source - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Get release id: get_release uses: bruceadams/get-release@v1.3.2 @@ -195,7 +195,7 @@ jobs: p12-password: ${{ secrets.APPLE_DEVELOPER_CERTIFICATE_PASSWORD }} - name: Clone gon - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: "1" repository: matrixorigin/gon @@ -269,7 +269,7 @@ jobs: done exit 1; - name: Checkout source - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Get release id: get_release uses: bruceadams/get-release@v1.3.2 @@ -351,7 +351,7 @@ jobs: # runs-on: ubuntu-22.04 # steps: # - name: Checkout source - # uses: actions/checkout@v5 + # uses: actions/checkout@v6 # - name: Get release # id: get_release # uses: bruceadams/get-release@v1.3.2 @@ -413,7 +413,7 @@ jobs: # runs-on: arm64-mo-guangzhou-2xlarge16 # steps: # - name: Checkout source - # uses: actions/checkout@v5 + # uses: actions/checkout@v6 # - name: Get release # id: get_release # uses: bruceadams/get-release@v1.3.2 diff --git a/.github/workflows/robot.yaml b/.github/workflows/robot.yaml index 942db61..f2d9987 100644 --- a/.github/workflows/robot.yaml +++ b/.github/workflows/robot.yaml @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: CheckOut - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Check the code to see if the issue number is removed id: get_check_val @@ -100,7 +100,7 @@ jobs: environment: ci runs-on: amd64-mo-shanghai-4xlarge32 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: "3" path: ./matrixone @@ -123,7 +123,7 @@ jobs: echo 'GOPROXY=http://goproxy.goproxy.svc.cluster.local|https://goproxy.cn|direct' >> $GITHUB_ENV echo "$JAVA_HOME/bin" >> $GITHUB_PATH; - name: Clone test-tool repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tester path: ./mo-tester diff --git a/.github/workflows/utils.yaml b/.github/workflows/utils.yaml index 871f751..bd1c6fe 100644 --- a/.github/workflows/utils.yaml +++ b/.github/workflows/utils.yaml @@ -96,14 +96,14 @@ jobs: # if you change runner, must modify L117 runs-on: amd64-mo-guangzhou-2xlarge16 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: "1" path: ./matrixone repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} - name: Clone test-tool repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tester path: ./mo-tester @@ -318,7 +318,7 @@ jobs: retention-days: 7 - name: Checkout for Python file if: ${{ always() && !cancelled() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/CI fetch-depth: "1" @@ -409,14 +409,14 @@ jobs: environment: ci runs-on: amd64-mo-guangzhou-2xlarge16 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: path: ./matrixone repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} - name: Clone mo-load-data Repo if: ${{ !cancelled() && !failure() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-load-data token: ${{secrets.TOKEN_ACTION}} @@ -424,7 +424,7 @@ jobs: ref: main - name: Clone mo-load Repo if: ${{ !cancelled() && !failure() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-load token: ${{secrets.TOKEN_ACTION}} @@ -432,7 +432,7 @@ jobs: ref: "1.0" - name: Clone mo-tpcc Repo if: ${{ !cancelled() && !failure() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tpcc token: ${{secrets.TOKEN_ACTION}} @@ -440,7 +440,7 @@ jobs: ref: main - name: Clone mo-ssb Repo if: ${{ !cancelled() && !failure() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-ssb token: ${{secrets.TOKEN_ACTION}} @@ -448,7 +448,7 @@ jobs: ref: main - name: Clone mo-tpch Repo if: ${{ !cancelled() && !failure() }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: matrixorigin/mo-tpch token: ${{secrets.TOKEN_ACTION}}