Skip to content

Commit 0f6f3d2

Browse files
authored
Use HTTP instead of SSH for cloning repo for JMH Benchmarks (#1056)
Changed `git clone` to use HTTP since we only need read-only access and don't need to unnecessarily depend on SSH keys and authentication
1 parent cc5ef65 commit 0f6f3d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/run_main_benchmarks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
cd "$BRANCH_NAME/"
44
mkdir main
55
cd main/
6-
git clone git@github.com:Uber/NullAway.git
6+
git clone https://github.com/uber/NullAway.git
77
cd NullAway/
88

99
./gradlew jmh --no-daemon

.github/workflows/run_pr_benchmarks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
cd "$BRANCH_NAME/"
44
mkdir pr
55
cd pr/
6-
git clone --branch "$BRANCH_NAME" --single-branch git@github.com:"$REPO_NAME".git NullAway
6+
git clone --branch "$BRANCH_NAME" --single-branch https://github.com/"$REPO_NAME".git NullAway
77
cd NullAway/
88

99
./gradlew jmh --no-daemon

0 commit comments

Comments
 (0)