Compressed symlink is not supported in master

Hi Antonio,
I’m using ubuntu-latest in my GH Action, no container defined that would overwrite it and I am experiencing the same issue. Maybe you have some tips?

GH Action is using the upstream one from sonar as you can see here:

name: SonarQube

on:
  push:
    branches:
    - 'main'

jobs:
  tag:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4
        with:
          fetch-depth: 0

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