From c924418bc5a7dd0da98e5f49bef135fb094310bd Mon Sep 17 00:00:00 2001 From: Andrew Sisley Date: Mon, 1 May 2023 15:21:37 -0400 Subject: [PATCH] Remove secret ssh key stuff from change detector wf No secret no longer exists and is not needed since open-sourcing --- .github/workflows/detect-change.yml | 7 ------- tests/integration/utils2.go | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/detect-change.yml b/.github/workflows/detect-change.yml index 6dfba9a27b..65238e78da 100644 --- a/.github/workflows/detect-change.yml +++ b/.github/workflows/detect-change.yml @@ -41,13 +41,6 @@ jobs: make deps:modules make deps:test - # We need SSH Authorization because change detection needs use `ls-remote` like: - # git ls-remote git@github.com:sourcenetwork/defradb.git refs/heads/develop - - uses: webfactory/ssh-agent@v0.7.0 - with: - ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - log-public-key: false - - name: Run detection for changes run: make test:changes diff --git a/tests/integration/utils2.go b/tests/integration/utils2.go index 64ab339790..70caa6f2fa 100644 --- a/tests/integration/utils2.go +++ b/tests/integration/utils2.go @@ -128,7 +128,7 @@ func init() { SetupOnly = getBool(setupOnlyValue) if !repositorySpecified { - repositoryValue = "git@github.com:sourcenetwork/defradb.git" + repositoryValue = "https://github.com/sourcenetwork/defradb.git" } if !targetBranchSpecified {