Skip to content

Commit a3b9ee6

Browse files
committed
Support 8.15.5 in acc tests
1 parent 32af63a commit a3b9ee6

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
- '8.12.2'
124124
- '8.13.4'
125125
- '8.14.3'
126-
- '8.15.3'
126+
- '8.15.5'
127127
steps:
128128
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
129129
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
@@ -153,7 +153,7 @@ jobs:
153153

154154
- id: setup-fleet
155155
name: Setup Fleet
156-
if: matrix.version == '8.10.3' || matrix.version == '8.11.4' || matrix.version == '8.12.2' || matrix.version == '8.13.4' || matrix.version == '8.14.3' || matrix.version == '8.15.3'
156+
if: matrix.version == '8.10.3' || matrix.version == '8.11.4' || matrix.version == '8.12.2' || matrix.version == '8.13.4' || matrix.version == '8.14.3' || matrix.version == '8.15.5'
157157
run: |-
158158
make setup-kibana-fleet
159159
env:
@@ -162,7 +162,7 @@ jobs:
162162

163163
- id: force-install-synthetics
164164
name: Force install synthetics
165-
if: matrix.version == '8.14.3' || matrix.version == '8.15.3'
165+
if: matrix.version == '8.14.3' || matrix.version == '8.15.5'
166166
run: |-
167167
for i in {1..5}; do curl -s -H "Authorization: ApiKey ${{ steps.get-api-key.outputs.apikey }}" --header "Content-Type: application/json" --header "kbn-xsrf: true" --request POST --data '{ "force": true }' http://localhost:5601/api/fleet/epm/packages/synthetics/1.2.2 && break || sleep 15; done
168168

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## [Unreleased]
22

3+
- Support 8.15.5 in acc tests.
4+
35
## [0.11.12] - 2024-12-16
46

57
### Breaking changes

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ SWAGGER_VERSION ?= 8.7
1616

1717
GOVERSION ?= $(shell grep -e '^go' go.mod | cut -f 2 -d ' ')
1818

19-
STACK_VERSION ?= 8.15.3
19+
STACK_VERSION ?= 8.15.5
2020

2121
ELASTICSEARCH_NAME ?= terraform-elasticstack-es
2222
ELASTICSEARCH_ENDPOINTS ?= http://$(ELASTICSEARCH_NAME):9200

0 commit comments

Comments
 (0)