From fb5e1813c42c61914114cac1b6fe714aaedbce7c Mon Sep 17 00:00:00 2001 From: shouren Date: Thu, 12 Dec 2024 11:22:52 +0800 Subject: [PATCH] fix: git detected dubious ownership in repository at '/__w/OpenMLDB/OpenMLDB' for some workflow actions Signed-off-by: shouren --- .github/workflows/integration-test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 9d0d9b03817..01d36f3aa3d 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -37,9 +37,10 @@ jobs: container: image: ghcr.io/4paradigm/hybridsql:latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: build openmldb run: | + git config --system --add safe.directory $(pwd) make configure SQL_JAVASDK_ENABLE=ON CMAKE_INSTALL_PREFIX=openmldb make build SQL_JAVASDK_ENABLE=ON CMAKE_INSTALL_PREFIX=openmldb make install SQL_JAVASDK_ENABLE=ON CMAKE_INSTALL_PREFIX=openmldb @@ -55,7 +56,7 @@ jobs: - name: upload ut results if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: openmldb-test-python-${{ github.sha }} path: pytest.xml