Where do I get the SonarQube Server URL on a free account?

I am trying to find the url for setting up github actions like this

- name: SonarQube Scan
        uses: sonarsource/sonarqube-scan-action@master
        env:
          SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
          SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}

But I can’t find the host url and I can’t find any docs on where to get it. I do see some that suggest I can only use the default branch for free but can I also not get this information?

Hi,

It seems you’re not familiar with SonarQube. To use this action you need a SonarQube server. You could use SonarQube Cloud or setup your own server with the SonarQube Community or SonarQube Server ($$$).

If you’re using SonarQube Cloud you don’t need to set the SONAR_HOST_URL, this action already sets it by default to the URL of SonarQube Cloud. Here’s the relevant documentation: Github Actions | SonarQube Cloud Documentation

But to be honest, it is highly recommended to thoroughly review the documentation. There is a lot of important information available on other pages.