From 179ba2baf61c2265753406275d9d749152a7e894 Mon Sep 17 00:00:00 2001 From: Jesse Jordan Date: Tue, 29 Mar 2022 20:39:14 +0200 Subject: [PATCH] upd(ci): allow authenticated dependency installation --- .circleci/config.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9e695dc81..54c37b232 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,5 +11,15 @@ jobs: steps: - checkout + - add_ssh_keys: + fingerprints: + - "16:26:c9:af:c0:c6:27:08:be:31:b5:36:40:71:63:44" + + # lock in authentication for Github modules via ssh + - run: git config --global --add url."git@github.com:".insteadOf "https://github.com/" + + # disable checksum checking via Go on private Meroxa repositories + - run: go env -w GOPRIVATE=github.com/meroxa/* + # specify any bash command here prefixed with `run: ` - run: go test -mod=vendor -v -race ./...