fix: builder and sdk changes #81
2 changed files with 1 additions and 17 deletions
16
.github/actions/acc_test/action.yaml
vendored
16
.github/actions/acc_test/action.yaml
vendored
|
|
@ -89,24 +89,12 @@ runs:
|
||||||
fi
|
fi
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Install JAVA
|
|
||||||
shell: bash
|
|
||||||
run: echo "::group::java install"
|
|
||||||
|
|
||||||
- name: Setup JAVA
|
- name: Setup JAVA
|
||||||
uses: actions/setup-java@v5
|
uses: actions/setup-java@v5
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin' # See 'Supported distributions' for available options
|
distribution: 'temurin' # See 'Supported distributions' for available options
|
||||||
java-version: '21'
|
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 }}
|
- name: Install Go ${{ inputs.go-version }}
|
||||||
uses: actions/setup-go@v6
|
uses: actions/setup-go@v6
|
||||||
with:
|
with:
|
||||||
|
|
@ -114,10 +102,6 @@ runs:
|
||||||
check-latest: true
|
check-latest: true
|
||||||
go-version-file: 'go.mod'
|
go-version-file: 'go.mod'
|
||||||
|
|
||||||
- name: Install GO
|
|
||||||
shell: bash
|
|
||||||
run: echo "::endgroup::"
|
|
||||||
|
|
||||||
- name: Determine GOMODCACHE
|
- name: Determine GOMODCACHE
|
||||||
shell: bash
|
shell: bash
|
||||||
id: goenv
|
id: goenv
|
||||||
|
|
|
||||||
|
|
@ -316,7 +316,7 @@ func TestAccInstanceEncryption(t *testing.T) {
|
||||||
verString := os.Getenv("TF_ACC_KEK_KEY_VERSION")
|
verString := os.Getenv("TF_ACC_KEK_KEY_VERSION")
|
||||||
version, err := strconv.ParseUint(verString, 0, 8)
|
version, err := strconv.ParseUint(verString, 0, 8)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("error coverting value to uint8")
|
t.Errorf("error coverting value to uint8: %+v", verString)
|
||||||
}
|
}
|
||||||
data.KekKeyVersion = uint8(version)
|
data.KekKeyVersion = uint8(version)
|
||||||
data.KekServiceAccount = os.Getenv("TF_ACC_KEK_SERVICE_ACCOUNT")
|
data.KekServiceAccount = os.Getenv("TF_ACC_KEK_SERVICE_ACCOUNT")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue