Skip to content

Commit fc29aca

Browse files
authored
Bump version to 3.3.4 (#645)
1 parent 3fe8968 commit fc29aca

35 files changed

+110
-105
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
# Checkout the source, we need a depth of zero to fetch all of the history otherwise
3737
# the copyright check cannot work out the date of the files from Git.
3838
steps:
39-
- uses: actions/checkout@v3
39+
- uses: actions/checkout@v4
4040
with:
4141
fetch-depth: 0
4242

@@ -69,27 +69,27 @@ jobs:
6969
release: 21
7070

7171
- name: Set up Go
72-
uses: actions/setup-go@v3
72+
uses: actions/setup-go@v5
7373
with:
7474
go-version: 1.22.x
7575

7676
- name: Cache Go Modules
77-
uses: actions/cache@v3
77+
uses: actions/cache@v4
7878
with:
7979
path: ~/go/pkg/mod
8080
key: ${{ runner.os }}-go-mods-${{ hashFiles('**/go.sum') }}
8181
restore-keys: |
8282
${{ runner.os }}-go-mods-
8383
8484
- name: Cache Maven packages
85-
uses: actions/cache@v3
85+
uses: actions/cache@v4
8686
with:
8787
path: ~/.m2
8888
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
8989
restore-keys: ${{ runner.os }}-m2
9090

9191
- name: Cache Tools
92-
uses: actions/cache@v3
92+
uses: actions/cache@v4
9393
with:
9494
path: build/tools
9595
key: ${{ runner.os }}-build-tools-${{ hashFiles('**/Makefile') }}

.github/workflows/coherence-matrix.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
include:
4848
- matrixName: "15.1.1-0-SNAPSHOT"
4949
coherenceVersion: "15.1.1-0-0-SNAPSHOT"
50-
coherenceImage: "iad.ocir.io/odx-stateservice/test/coherence:15.1.1-0-0-SNAPSHOT"
50+
coherenceImage: "iad.ocir.io/odx-stateservice/test/coherence:15.1.1-0-0-SNAPSHOT-java17"
5151
javaVersion: 17
5252
baseImage: "gcr.io/distroless/java17-debian12"
5353

@@ -112,7 +112,7 @@ jobs:
112112
baseImage: "gcr.io/distroless/java11-debian11"
113113

114114
steps:
115-
- uses: actions/checkout@v3
115+
- uses: actions/checkout@v4
116116
with:
117117
fetch-depth: 0
118118

@@ -145,27 +145,27 @@ jobs:
145145
release: 21
146146

147147
- name: Set up Go
148-
uses: actions/setup-go@v3
148+
uses: actions/setup-go@v5
149149
with:
150150
go-version: 1.22.x
151151

152152
- name: Cache Go Modules
153-
uses: actions/cache@v3
153+
uses: actions/cache@v4
154154
with:
155155
path: ~/go/pkg/mod
156156
key: ${{ runner.os }}-go-mods-${{ hashFiles('**/go.sum') }}
157157
restore-keys: |
158158
${{ runner.os }}-go-mods-
159159
160160
- name: Cache Maven packages
161-
uses: actions/cache@v3
161+
uses: actions/cache@v4
162162
with:
163163
path: ~/.m2
164164
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
165165
restore-keys: ${{ runner.os }}-m2
166166

167167
- name: Cache Tools
168-
uses: actions/cache@v3
168+
uses: actions/cache@v4
169169
with:
170170
path: build/tools
171171
key: ${{ runner.os }}-build-tools-${{ hashFiles('**/Makefile') }}

.github/workflows/compatibility-tests.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
fail-fast: false
3838
matrix:
3939
compatibilityVersion:
40+
- 3.3.3
4041
- 3.3.2
4142
- 3.3.1
4243
- 3.3.0
@@ -46,6 +47,10 @@ jobs:
4647
- 3.2.7
4748
- 3.2.6
4849
include:
50+
- compatibilityVersion: 3.3.3
51+
coherence-image: "ghcr.io/oracle/coherence-ce:22.06.7"
52+
compatibilitySelector: control-plane=coherence
53+
k8s: kindest/node:v1.27.3@sha256:3966ac761ae0136263ffdb6cfd4db23ef8a83cba8a463690e98317add2c9ba72
4954
- compatibilityVersion: 3.3.2
5055
coherence-image: "ghcr.io/oracle/coherence-ce:22.06.7"
5156
compatibilitySelector: control-plane=coherence
@@ -80,7 +85,7 @@ jobs:
8085
k8s: kindest/node:v1.24.12@sha256:1e12918b8bc3d4253bc08f640a231bb0d3b2c5a9b28aa3f2ca1aee93e1e8db16
8186

8287
steps:
83-
- uses: actions/checkout@v3
88+
- uses: actions/checkout@v4
8489
with:
8590
fetch-depth: 0
8691

@@ -113,27 +118,27 @@ jobs:
113118
release: 21
114119

115120
- name: Set up Go
116-
uses: actions/setup-go@v3
121+
uses: actions/setup-go@v5
117122
with:
118123
go-version: 1.22.x
119124

120125
- name: Cache Go Modules
121-
uses: actions/cache@v3
126+
uses: actions/cache@v4
122127
with:
123128
path: ~/go/pkg/mod
124129
key: ${{ runner.os }}-go-mods-${{ hashFiles('**/go.sum') }}
125130
restore-keys: |
126131
${{ runner.os }}-go-mods-
127132
128133
- name: Cache Maven packages
129-
uses: actions/cache@v3
134+
uses: actions/cache@v4
130135
with:
131136
path: ~/.m2
132137
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
133138
restore-keys: ${{ runner.os }}-m2
134139

135140
- name: Cache Tools
136-
uses: actions/cache@v3
141+
uses: actions/cache@v4
137142
with:
138143
path: build/tools
139144
key: ${{ runner.os }}-build-tools-${{ hashFiles('**/Makefile') }}

.github/workflows/doc-check.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727

2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
with:
3131
fetch-depth: 0
3232

@@ -37,27 +37,27 @@ jobs:
3737
release: 21
3838

3939
- name: Set up Go
40-
uses: actions/setup-go@v3
40+
uses: actions/setup-go@v5
4141
with:
4242
go-version: 1.22.x
4343

4444
- name: Cache Go Modules
45-
uses: actions/cache@v3
45+
uses: actions/cache@v4
4646
with:
4747
path: ~/go/pkg/mod
4848
key: ${{ runner.os }}-go-mods-${{ hashFiles('**/go.sum') }}
4949
restore-keys: |
5050
${{ runner.os }}-go-mods-
5151
5252
- name: Cache Maven packages
53-
uses: actions/cache@v3
53+
uses: actions/cache@v4
5454
with:
5555
path: ~/.m2
5656
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
5757
restore-keys: ${{ runner.os }}-m2
5858

5959
- name: Cache Tools
60-
uses: actions/cache@v3
60+
uses: actions/cache@v4
6161
with:
6262
path: build/tools
6363
key: ${{ runner.os }}-build-tools-${{ hashFiles('**/Makefile') }}

.github/workflows/istio-tests.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- 1.17.5
4343

4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v4
4646
with:
4747
fetch-depth: 0
4848

@@ -75,27 +75,27 @@ jobs:
7575
release: 21
7676

7777
- name: Set up Go
78-
uses: actions/setup-go@v3
78+
uses: actions/setup-go@v5
7979
with:
8080
go-version: 1.22.x
8181

8282
- name: Cache Go Modules
83-
uses: actions/cache@v3
83+
uses: actions/cache@v4
8484
with:
8585
path: ~/go/pkg/mod
8686
key: ${{ runner.os }}-go-mods-${{ hashFiles('**/go.sum') }}
8787
restore-keys: |
8888
${{ runner.os }}-go-mods-
8989
9090
- name: Cache Maven packages
91-
uses: actions/cache@v3
91+
uses: actions/cache@v4
9292
with:
9393
path: ~/.m2
9494
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
9595
restore-keys: ${{ runner.os }}-m2
9696

9797
- name: Cache Tools
98-
uses: actions/cache@v3
98+
uses: actions/cache@v4
9999
with:
100100
path: build/tools
101101
key: ${{ runner.os }}-build-tools-${{ hashFiles('**/Makefile') }}

.github/workflows/k8s-matrix.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
runNetTests: true
7979

8080
steps:
81-
- uses: actions/checkout@v3
81+
- uses: actions/checkout@v4
8282
with:
8383
fetch-depth: 0
8484

@@ -111,27 +111,27 @@ jobs:
111111
release: 21
112112

113113
- name: Set up Go
114-
uses: actions/setup-go@v3
114+
uses: actions/setup-go@v5
115115
with:
116116
go-version: 1.22.x
117117

118118
- name: Cache Go Modules
119-
uses: actions/cache@v3
119+
uses: actions/cache@v4
120120
with:
121121
path: ~/go/pkg/mod
122122
key: ${{ runner.os }}-go-mods-${{ hashFiles('**/go.sum') }}
123123
restore-keys: |
124124
${{ runner.os }}-go-mods-
125125
126126
- name: Cache Maven packages
127-
uses: actions/cache@v3
127+
uses: actions/cache@v4
128128
with:
129129
path: ~/.m2
130130
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
131131
restore-keys: ${{ runner.os }}-m2
132132

133133
- name: Cache Tools
134-
uses: actions/cache@v3
134+
uses: actions/cache@v4
135135
with:
136136
path: build/tools
137137
key: ${{ runner.os }}-build-tools-${{ hashFiles('**/Makefile') }}

.github/workflows/minikube-matrix.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
k8s: 1.25.16
5858

5959
steps:
60-
- uses: actions/checkout@v3
60+
- uses: actions/checkout@v4
6161
with:
6262
fetch-depth: 0
6363

@@ -90,27 +90,27 @@ jobs:
9090
release: 21
9191

9292
- name: Set up Go
93-
uses: actions/setup-go@v3
93+
uses: actions/setup-go@v5
9494
with:
9595
go-version: 1.22.x
9696

9797
- name: Cache Go Modules
98-
uses: actions/cache@v3
98+
uses: actions/cache@v4
9999
with:
100100
path: ~/go/pkg/mod
101101
key: ${{ runner.os }}-go-mods-${{ hashFiles('**/go.sum') }}
102102
restore-keys: |
103103
${{ runner.os }}-go-mods-
104104
105105
- name: Cache Maven packages
106-
uses: actions/cache@v3
106+
uses: actions/cache@v4
107107
with:
108108
path: ~/.m2
109109
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
110110
restore-keys: ${{ runner.os }}-m2
111111

112112
- name: Cache Tools
113-
uses: actions/cache@v3
113+
uses: actions/cache@v4
114114
with:
115115
path: build/tools
116116
key: ${{ runner.os }}-build-tools-${{ hashFiles('**/Makefile') }}

.github/workflows/prometheus-tests.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
# Checkout the source, we need a depth of zero to fetch all the history otherwise
3737
# the copyright check cannot work out the date of the files from Git.
3838
steps:
39-
- uses: actions/checkout@v3
39+
- uses: actions/checkout@v4
4040
with:
4141
fetch-depth: 0
4242

@@ -69,27 +69,27 @@ jobs:
6969
release: 21
7070

7171
- name: Set up Go
72-
uses: actions/setup-go@v3
72+
uses: actions/setup-go@v5
7373
with:
7474
go-version: 1.22.x
7575

7676
- name: Cache Go Modules
77-
uses: actions/cache@v3
77+
uses: actions/cache@v4
7878
with:
7979
path: ~/go/pkg/mod
8080
key: ${{ runner.os }}-go-mods-${{ hashFiles('**/go.sum') }}
8181
restore-keys: |
8282
${{ runner.os }}-go-mods-
8383
8484
- name: Cache Maven packages
85-
uses: actions/cache@v3
85+
uses: actions/cache@v4
8686
with:
8787
path: ~/.m2
8888
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
8989
restore-keys: ${{ runner.os }}-m2
9090

9191
- name: Cache Tools
92-
uses: actions/cache@v3
92+
uses: actions/cache@v4
9393
with:
9494
path: build/tools
9595
key: ${{ runner.os }}-build-tools-${{ hashFiles('**/Makefile') }}

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525

@@ -30,27 +30,27 @@ jobs:
3030
release: 21
3131

3232
- name: Set up Go
33-
uses: actions/setup-go@v3
33+
uses: actions/setup-go@v5
3434
with:
3535
go-version: 1.22.x
3636

3737
- name: Cache Go Modules
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/go/pkg/mod
4141
key: ${{ runner.os }}-go-mods-${{ hashFiles('**/go.sum') }}
4242
restore-keys: |
4343
${{ runner.os }}-go-mods-
4444
4545
- name: Cache Maven packages
46-
uses: actions/cache@v3
46+
uses: actions/cache@v4
4747
with:
4848
path: ~/.m2
4949
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
5050
restore-keys: ${{ runner.os }}-m2
5151

5252
- name: Cache Tools
53-
uses: actions/cache@v3
53+
uses: actions/cache@v4
5454
with:
5555
path: build/tools
5656
key: ${{ runner.os }}-build-tools-${{ hashFiles('**/Makefile') }}

0 commit comments

Comments
 (0)