Gradle sonarqube throwing Error on github action workflow as "A connection to https://sonarcloud.io/ was leaked"

Below command on github actions is giving the above error.
"A connection to https://sonarcloud.io/ was leaked. Did you forget to close a response body? To see where this was allocated, set the OkHttpClient logger level to FINE: Logger.getLogger(OkHttpClient.class.getName()).setLevel(Level.FINE);

This doesn’t happen on travis or on local macbook
./gradlew check jacocoTestReport sonarqube --stacktrace --refresh-dependencies -Dsonar.login=$SONAR_TOKEN

Below is the yaml setup for github actions

name: Sonarqube static code analysis

    on: [push,pull_request]

    jobs:
      build:

        runs-on: ubuntu-20.04

        steps:
          - uses: actions/checkout@v2
            with:
              # Shallow clones should be disabled for a better relevancy of analysis
              fetch-depth: 0
          - uses: joschi/setup-jdk@v2
            with:
              java-version: '11' # The OpenJDK version to make available on the path
              architecture: 'x64' # defaults to 'x64'
          - name: Cache Gradle packages
            uses: actions/cache@v1
            with:
              path: ~/.gradle/caches
              key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
              restore-keys: ${{ runner.os }}-gradle
          - name: Cache SonarCloud packages
            uses: actions/cache@v1
            with:
              path: ~/.sonar/cache
              key: ${{ runner.os }}-sonar
              restore-keys: ${{ runner.os }}-sonar
          - name: Build and analyze
            run: ./gradlew check jacocoTestReport sonarqube --stacktrace --refresh-dependencies -Dsonar.login=$SONAR_TOKEN
            env:
              # Needed to get some information about the pull request, if any
              GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
              # SonarCloud access token should be generated from https://sonarcloud.io/account/security/
              SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

Gradle plugin for sonarqube
3.1.1

Java version: Openjdk11