Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/acceptance-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.24.0
go-version: stable
# This CI supports skipping flaky or broken tests via GitHub repository variables.
# This allows quick fixes without code changes when tests break due to external factors.
#
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.24.0
go-version: stable
- name: Install Terraform
uses: hashicorp/setup-terraform@v3
- name: Run scwconfig tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.24.0
go-version: stable
- name: Run Acceptance Tests
run: go tool gotestsum --format github-actions -- -v ./internal/services/${{ matrix.products }} -timeout=4h
env:
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.24.0
go-version: stable
- name: Install Terraform
uses: hashicorp/setup-terraform@v3
- name: Run sweepers
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/purge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.24.0
go-version: stable
- name: Install Terraform
uses: hashicorp/setup-terraform@v3
- name: Run sweepers
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24.0
go-version: stable

- name: Verify go.mod is tidy
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/terrafmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
with:
go-version: 1.24.0
go-version: stable
- name: Run terrafmt on documentation
run: go tool terrafmt fmt --verbose --check ./docs
4 changes: 2 additions & 2 deletions .github/workflows/tfproviderlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
with:
go-version: 1.24.0
go-version: stable
- name: Install tfproviderlint
run: go install github.com/bflad/tfproviderlint/cmd/tfproviderlint
- name: Run tfproviderlint
Expand All @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
with:
go-version: 1.24.0
go-version: stable
- uses: hashicorp/setup-terraform@v3
- run: go install github.com/bflad/tfproviderdocs@latest
- run: make tfproviderdocs
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.24.0
go-version: stable
- name: Install Terraform
uses: hashicorp/setup-terraform@v3
- name: Build binaries
Expand Down
Loading