Fix Go version syntax in SonarQube workflow

Corrected the Go version syntax from '1.23.x' to '1.23' in the SonarQube GitHub Action workflow configuration to ensure proper version setup. This change addresses potential issues with version resolution in the setup-go action.
This commit is contained in:
Winni Neessen 2024-09-11 10:22:51 +02:00
parent 31d2bea9c6
commit 926cfc9581
Signed by: wneessen
GPG key ID: 385AC9889632126E

View file

@ -30,7 +30,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: '1.23.x'
go-version: '1.23'
- name: Run unit Tests
run: |