diff --git a/.github/actions/acc_test/action.yaml b/.github/actions/acc_test/action.yaml index 11c9c178..ccd08969 100644 --- a/.github/actions/acc_test/action.yaml +++ b/.github/actions/acc_test/action.yaml @@ -89,24 +89,12 @@ runs: fi echo "::endgroup::" - - name: Install JAVA - shell: bash - run: echo "::group::java install" - - name: Setup JAVA uses: actions/setup-java@v5 with: distribution: 'temurin' # See 'Supported distributions' for available options java-version: '21' - - name: Install JAVA - shell: bash - run: echo "::endgroup::" - - - name: Install GO - shell: bash - run: echo "::group::go install" - - name: Install Go ${{ inputs.go-version }} uses: actions/setup-go@v6 with: @@ -114,10 +102,6 @@ runs: check-latest: true go-version-file: 'go.mod' - - name: Install GO - shell: bash - run: echo "::endgroup::" - - name: Determine GOMODCACHE shell: bash id: goenv diff --git a/stackit/internal/services/sqlserverflexalpha/sqlserverflex_acc_test.go b/stackit/internal/services/sqlserverflexalpha/sqlserverflex_acc_test.go index b57aba2d..21b336fd 100644 --- a/stackit/internal/services/sqlserverflexalpha/sqlserverflex_acc_test.go +++ b/stackit/internal/services/sqlserverflexalpha/sqlserverflex_acc_test.go @@ -316,7 +316,7 @@ func TestAccInstanceEncryption(t *testing.T) { verString := os.Getenv("TF_ACC_KEK_KEY_VERSION") version, err := strconv.ParseUint(verString, 0, 8) if err != nil { - t.Errorf("error coverting value to uint8") + t.Errorf("error coverting value to uint8: %+v", verString) } data.KekKeyVersion = uint8(version) data.KekServiceAccount = os.Getenv("TF_ACC_KEK_SERVICE_ACCOUNT")