Skip to content

Commit 57258e8

Browse files
authored
Update actions versions (#87)
* Update actions versions * Fix typo
1 parent 42b2ef6 commit 57258e8

File tree

7 files changed

+28
-29
lines changed

7 files changed

+28
-29
lines changed

.github/workflows/build-compatability-2206.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,16 +87,16 @@ jobs:
8787
go get google.golang.org/grpc/cmd/[email protected]
8888
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=$COH_VERSION PROFILES=,-jakarta,javax,scope make clean generate-proto build-test-images test-e2e-standalone-scope
8989
90-
- uses: actions/upload-artifact@v3
90+
- uses: actions/upload-artifact@v4
9191
if: failure()
9292
with:
93-
name: test-output
93+
name: test-output-${{ matrix.go-version }}-${{ matrix.coherenceVersion }}
9494
path: build/_output/test-logs
9595

96-
- uses: actions/upload-artifact@v3
96+
- uses: actions/upload-artifact@v4
9797
if: failure()
9898
with:
99-
name: test-output
99+
name: test-output-${{ matrix.go-version }}-${{ matrix.coherenceVersion }}
100100
path: build/_output/test-logs
101101

102102
- name: E2E Local Tests SSL
@@ -112,8 +112,8 @@ jobs:
112112
COHERENCE_TLS_CLIENT_KEY=`pwd`/test/utils/certs/star-lord.key \
113113
COHERENCE_VERSION=$COH_VERSION PROFILES=,secure,-jakarta,javax make clean certs generate-proto build-test-images test-e2e-standalone
114114
115-
- uses: actions/upload-artifact@v3
115+
- uses: actions/upload-artifact@v4
116116
if: failure()
117117
with:
118-
name: test-output
118+
name: test-output-${{ matrix.go-version }}-${{ matrix.coherenceVersion }}
119119
path: build/_output/test-logs

.github/workflows/build-compatability.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ jobs:
7777
go get google.golang.org/grpc/cmd/[email protected]
7878
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 INCLUDE_LONG_RUNNING=true PROFILES=,jakarta,-javax COHERENCE_VERSION=$COH_VERSION make clean generate-proto build-test-images test-e2e-standalone
7979
80-
- uses: actions/upload-artifact@v3
80+
- uses: actions/upload-artifact@v4
8181
if: failure()
8282
with:
83-
name: test-output
83+
name: test-output-${{ matrix.go-version }}-${{ matrix.coherenceVersion }}
8484
path: build/_output/test-logs
8585

8686
- name: E2E Local Tests With Scope
@@ -91,10 +91,10 @@ jobs:
9191
go get google.golang.org/grpc/cmd/[email protected]
9292
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=$COH_VERSION PROFILES=,jakarta,-javax,scope make clean generate-proto build-test-images test-e2e-standalone-scope
9393
94-
- uses: actions/upload-artifact@v3
94+
- uses: actions/upload-artifact@v4
9595
if: failure()
9696
with:
97-
name: test-output
97+
name: test-output-${{ matrix.go-version }}-${{ matrix.coherenceVersion }}
9898
path: build/_output/test-logs
9999

100100
- name: E2E Local Tests SSL
@@ -110,8 +110,8 @@ jobs:
110110
COHERENCE_TLS_CLIENT_KEY=`pwd`/test/utils/certs/star-lord.key \
111111
COHERENCE_VERSION=$COH_VERSION PROFILES=,secure,jakarta,-javax make clean certs generate-proto build-test-images test-e2e-standalone
112112
113-
- uses: actions/upload-artifact@v3
113+
- uses: actions/upload-artifact@v4
114114
if: failure()
115115
with:
116-
name: test-output
116+
name: test-output-${{ matrix.go-version }}-${{ matrix.coherenceVersion }}
117117
path: build/_output/test-logs

.github/workflows/build-queues.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ jobs:
7777
go get google.golang.org/grpc/cmd/[email protected]
7878
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 INCLUDE_LONG_RUNNING=true PROFILES=,jakarta,-javax,queues COHERENCE_VERSION=$COH_VERSION make clean generate-proto build-test-images test-e2e-standalone-queues
7979
80-
- uses: actions/upload-artifact@v3
80+
- uses: actions/upload-artifact@v4
8181
if: failure()
8282
with:
83-
name: test-output
83+
name: test-output-${{ matrix.go-version }}-${{ matrix.coherenceVersion }}
8484
path: build/_output/test-logs

.github/workflows/build.yaml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,24 +83,24 @@ jobs:
8383
shell: bash
8484
run: |
8585
go get google.golang.org/grpc/cmd/[email protected]
86-
INCLUDE_LONG_RUNNING=true PROFILES=,-jakarta,javax COHERENCE_VERSION=22.06.7 make clean generate-proto build-test-images test-e2e-standalone
86+
INCLUDE_LONG_RUNNING=true PROFILES=,-jakarta,javax COHERENCE_VERSION=22.06.8 make clean generate-proto build-test-images test-e2e-standalone
8787
88-
- uses: actions/upload-artifact@v3
88+
- uses: actions/upload-artifact@v4
8989
if: failure()
9090
with:
91-
name: test-output
91+
name: test-output-${{ matrix.go-version }}
9292
path: build/_output/test-logs
9393

9494
- name: E2E Local Tests With Scope
9595
shell: bash
9696
run: |
9797
go get google.golang.org/grpc/cmd/[email protected]
98-
COHERENCE_VERSION=22.06.7 PROFILES=,-jakarta,javax,scope make clean generate-proto build-test-images test-e2e-standalone-scope
98+
COHERENCE_VERSION=22.06.8 PROFILES=,-jakarta,javax,scope make clean generate-proto build-test-images test-e2e-standalone-scope
9999
100-
- uses: actions/upload-artifact@v3
100+
- uses: actions/upload-artifact@v4
101101
if: failure()
102102
with:
103-
name: test-output
103+
name: test-output-${{ matrix.go-version }}
104104
path: build/_output/test-logs
105105

106106
- name: E2E Local Tests SSL (env)
@@ -112,7 +112,6 @@ jobs:
112112
COHERENCE_TLS_CLIENT_KEY=`pwd`/test/utils/certs/star-lord.key \
113113
COHERENCE_VERSION=22.06.7 PROFILES=,secure,-jakarta,javax make clean certs generate-proto build-test-images test-e2e-standalone
114114
115-
116115
- name: E2E Local Tests SSL (options)
117116
shell: bash
118117
run: |
@@ -131,8 +130,8 @@ jobs:
131130
COHERENCE_TLS_CLIENT_KEY_OPTION=`pwd`/test/utils/certs/star-lord.key \
132131
COHERENCE_VERSION=22.06.7 PROFILES=,secure,-jakarta,javax,scope make clean certs generate-proto build-test-images test-e2e-standalone-scope
133132
134-
- uses: actions/upload-artifact@v3
133+
- uses: actions/upload-artifact@v4
135134
if: failure()
136135
with:
137-
name: test-output
136+
name: test-output-${{ matrix.go-version }}
138137
path: build/_output/test-logs

.github/workflows/discovery-compatability-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ jobs:
7070
export COHERENCE_VERSION=${{ matrix.coherenceVersion }}
7171
make clean test-clean test-discovery
7272
73-
- uses: actions/upload-artifact@v3
73+
- uses: actions/upload-artifact@v4
7474
if: failure()
7575
with:
76-
name: test-output
76+
name: test-output-${{ matrix.go-version }}-${{ matrix.coherenceVersion }}
7777
path: build/_output/test-logs

.github/workflows/examples-jakarta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ jobs:
7979
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=${{ matrix.coherenceVersion }} PROFILES=,jakarta,-javax make clean generate-proto build-test-images test-cluster-startup test-examples
8080
make test-cluster-shutdown || true
8181
82-
- uses: actions/upload-artifact@v3
82+
- uses: actions/upload-artifact@v4
8383
if: failure()
8484
with:
85-
name: test-output
85+
name: test-output-${{ matrix.go-version }}-${{ matrix.coherenceVersion }}
8686
path: build/_output/test-logs

.github/workflows/examples.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ jobs:
8080
COHERENCE_VERSION=${{ matrix.coherenceVersion }} PROFILES=,-jakarta,javax make clean generate-proto build-test-images test-cluster-startup test-examples
8181
make test-cluster-shutdown || true
8282
83-
- uses: actions/upload-artifact@v3
83+
- uses: actions/upload-artifact@v4
8484
if: failure()
8585
with:
86-
name: test-output
86+
name: test-output-${{ matrix.go-version }}-${{ matrix.coherenceVersion }}
8787
path: build/_output/test-logs

0 commit comments

Comments
 (0)