Skip to content

Commit a7eb528

Browse files
authored
Merge branch 'master' into feat/add-lb-pn-resource
2 parents ba3ce65 + 7e15b9d commit a7eb528

File tree

143 files changed

+65562
-47610
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+65562
-47610
lines changed

.github/workflows/acceptance-tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
steps:
5151
# Checkout should always be before setup-go to ensure caching is working
5252
- name: Checkout
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v5
5454
- name: Install Terraform
5555
uses: hashicorp/setup-terraform@v3
5656
- name: Install Go
@@ -110,14 +110,14 @@ jobs:
110110
echo "Pattern: $SKIP_PATTERN"
111111
echo ""
112112
echo "Tests that will be skipped:"
113-
go test -list=. ./internal/services/${{ matrix.products }} | grep -E "$SKIP_PATTERN" || true
113+
go tool gotestsum --format github-actions -- -list=. ./internal/services/${{ matrix.products }} | grep -E "$SKIP_PATTERN" || true
114114
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
115115
echo ""
116116
117-
go test -v ./internal/services/${{ matrix.products }} -timeout=2h -skip="$SKIP_PATTERN"
117+
go tool gotestsum --format github-actions -- -v ./internal/services/${{ matrix.products }} -timeout=2h -skip="$SKIP_PATTERN"
118118
TEST_RESULT=$?
119119
else
120-
go test -v ./internal/services/${{ matrix.products }} -timeout=2h
120+
go tool gotestsum --format github-actions -- -v ./internal/services/${{ matrix.products }} -timeout=2h
121121
TEST_RESULT=$?
122122
fi
123123
@@ -147,15 +147,15 @@ jobs:
147147
steps:
148148
# Checkout should always be before setup-go to ensure caching is working
149149
- name: Checkout
150-
uses: actions/checkout@v4
150+
uses: actions/checkout@v5
151151
- name: Install Go
152152
uses: actions/setup-go@v5
153153
with:
154154
go-version: 1.24.0
155155
- name: Install Terraform
156156
uses: hashicorp/setup-terraform@v3
157157
- name: Run scwconfig tests
158-
run: go test -v ./internal/services/scwconfig -timeout=2m
158+
run: go tool gotestsum --format github-actions -- ./internal/services/scwconfig -timeout=2m
159159
env:
160160
TF_LOG: DEBUG
161161
TF_ACC: 1

.github/workflows/actionlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
actionlint:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Check workflow files
1313
uses: docker://rhysd/actionlint:latest
1414
with:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939
with:
4040
# We must fetch at least the immediate parents so that if this is
4141
# a pull request then we can checkout the head.

.github/workflows/documentation.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
markdown-link-check:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- uses: gaurav-nelson/[email protected]
2828
with:
2929
use-quiet-mode: 'yes'
@@ -34,7 +34,7 @@ jobs:
3434
markdown-lint:
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
- uses: avto-dev/[email protected]
3939
with:
4040
config: '.markdownlint.yml'
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
# Checkout should always be before setup-go to ensure caching is working
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
- uses: actions/setup-go@v5
4848
with:
4949
go-version: ${{ env.GO_VERSION }}
@@ -59,7 +59,7 @@ jobs:
5959
tfplugindocs:
6060
runs-on: ubuntu-latest
6161
steps:
62-
- uses: actions/checkout@v4
62+
- uses: actions/checkout@v5
6363
- uses: actions/setup-go@v5
6464
with:
6565
go-version: ${{ env.GO_VERSION }}

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: lint
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: golangci-lint
1616
uses: golangci/[email protected]
1717
with:

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
- name: Labeler
1515
uses: actions/labeler@v5

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ jobs:
5252
steps:
5353
# Checkout should always be before setup-go to ensure caching is working
5454
- name: Checkout
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
- name: Install Terraform
5757
uses: hashicorp/setup-terraform@v3
5858
- name: Install Go
5959
uses: actions/setup-go@v5
6060
with:
6161
go-version: 1.24.0
6262
- name: Run Acceptance Tests
63-
run: go test -v ./internal/services/${{ matrix.products }} -timeout=4h
63+
run: go tool gotestsum --format github-actions -- -v ./internal/services/${{ matrix.products }} -timeout=4h
6464
env:
6565
TF_LOG: DEBUG
6666
# https://www.terraform.io/docs/extend/testing/acceptance-tests/index.html#running-acceptance-tests
@@ -106,7 +106,7 @@ jobs:
106106
steps:
107107
# Checkout should always be before setup-go to ensure caching is working
108108
- name: Checkout
109-
uses: actions/checkout@v4
109+
uses: actions/checkout@v5
110110
- name: Install Go
111111
uses: actions/setup-go@v5
112112
with:

.github/workflows/purge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# Checkout should always be before setup-go to ensure caching is working
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
- name: Install Go
1717
uses: actions/setup-go@v5
1818
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
# Checkout should always be before setup-go to ensure caching is working
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626

2727
- name: Unshallow
2828
run: git fetch --prune --unshallow

.github/workflows/terrafmt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
# Checkout should always be before setup-go to ensure caching is working
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- uses: actions/setup-go@v5
1818
with:
1919
go-version: 1.24.0

0 commit comments

Comments
 (0)