Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/check-action-file.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,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 }}
Expand Down Expand Up @@ -160,7 +160,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 }}
Expand Down Expand Up @@ -194,7 +194,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 }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: "3"
repository: ${{ github.event.pull_request.head.repo.full_name }}
Expand Down Expand Up @@ -86,7 +86,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
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: "3"
repository: ${{ github.event.pull_request.head.repo.full_name }}
Expand Down Expand Up @@ -218,7 +218,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
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/e2e-standalone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -42,7 +42,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
Expand Down Expand Up @@ -145,7 +145,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 }}
Expand Down Expand Up @@ -174,7 +174,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
Expand Down Expand Up @@ -231,7 +231,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
Expand Down Expand Up @@ -265,7 +265,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
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/e2e-upgrade.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -76,7 +76,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
Expand Down Expand Up @@ -218,7 +218,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 }}
Expand All @@ -235,7 +235,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 }}
Expand Down Expand Up @@ -283,7 +283,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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 1

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/merge-trigger-standalone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -56,7 +56,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
Expand Down Expand Up @@ -129,7 +129,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
Expand All @@ -152,7 +152,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
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/merge-trigger-tke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: Prepare And Build
Expand Down Expand Up @@ -90,7 +90,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
Expand Down Expand Up @@ -239,15 +239,15 @@ 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}}
path: ./mo-tester
ref: main
- name: Clone matrixone Repo
if: ${{ always() && !cancelled() }}
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: ./matrixone
- name: Set JAVA PATH
Expand Down Expand Up @@ -292,7 +292,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}}
Expand All @@ -301,7 +301,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}}
Expand All @@ -310,15 +310,15 @@ 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}}
path: ./mo-tpch
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}}
Expand Down Expand Up @@ -513,15 +513,15 @@ 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}}
path: ./mo-load
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}}
Expand Down Expand Up @@ -634,7 +634,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}}
Expand All @@ -643,15 +643,15 @@ 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}}
path: ./mo-tpcc
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}}
Expand Down
Loading