fix(profiler): workaround certificate expiration issue in integration tests (#4955)

Let's Encrypt CA certification expiration is causing integration tests to fail.
This commit works around this problem by removing the problematic certificate.

Context: https://letsencrypt.org/docs/dst-root-ca-x3-expiration-september-2021/
diff --git a/profiler/kokoro/integration_test.sh b/profiler/kokoro/integration_test.sh
index c3a6834..30ac208 100644
--- a/profiler/kokoro/integration_test.sh
+++ b/profiler/kokoro/integration_test.sh
@@ -28,6 +28,13 @@
 # Display commands being run.
 set -x
 
+# Remove expired certificate; otherwise `go mod download` may fail.
+# See https://letsencrypt.org/docs/dst-root-ca-x3-expiration-september-2021/
+# for more context.
+sudo apt-get install -y ca-certificates
+sudo rm -f /usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt
+sudo update-ca-certificates
+
 cd $(dirname $0)/..
 
 export GOOGLE_APPLICATION_CREDENTIALS="${KOKORO_KEYSTORE_DIR}/72935_cloud-profiler-e2e-service-account-key"