chore: update to Go 1.23, SDK 0.10 and dependencies #77
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Acceptance Tests | |
on: | |
pull_request: | |
types: ["opened", "synchronize"] | |
paths: | |
- "**.go" | |
- go.mod | |
- ".github/workflows/testacc.yaml" | |
# allow this workflow to be called from other workflows | |
workflow_call: | |
env: | |
GOPROXY: https://proxy.golang.org,direct | |
DEBIAN_FRONTEND: noninteractive | |
GO_VERSION: "1.21" | |
jobs: | |
testacc: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
terraform_version: ["~1.4.0", "~1.5.0", "~1.6.0"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- uses: hashicorp/setup-terraform@v2 | |
with: | |
terraform_version: ${{ matrix.terraform_version }} | |
terraform_wrapper: false | |
- name: Run acceptance tests | |
run: echo Using terraform version $(terraform version --json | jq -r .terraform_version) && make testacc |