Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update github actions upload version #94

Merged
merged 2 commits into from
May 2, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/maven-build-snapshots-14110.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ jobs:
rm -rf /tmp/${CLONE_DIR}

- name: Coherence Demo Jar
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coherence-demo-jar
name: coherence-demo-jar-${{ matrix.branch }}
path: target/coherence-demo-*.jar

- name: Coherence Demo Javadoc
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coherence-demo-javadoc
name: coherence-demo-javadoc-${{ matrix.branch }}
path: target/coherence-demo-*-javadoc.jar
8 changes: 4 additions & 4 deletions .github/workflows/maven-build-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ jobs:
mvn --file pom.xml -nsu --batch-mode -e -Dcoherence.version=$COH_VERSION clean install

- name: Coherence Demo Jar
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coherence-demo-jar
name: coherence-demo-jar-${{ matrix.coherenceVersion }}
path: target/coherence-demo-*.jar

- name: Coherence Demo Javadoc
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coherence-demo-javadoc
name: coherence-demo-javadoc-${{ matrix.coherenceVersion }}
path: target/coherence-demo-*-javadoc.jar
2 changes: 1 addition & 1 deletion clients/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ clusters using gRPC. This is achieved via configuring and starting a [gRPCProxy]

> The Coherence gRPC proxy is the server-side implementation of the gRPC services defined within the Coherence gRPC module. The gRPC proxy uses standard gRPC Java libraries to provide Coherence APIs over gRPC.

This demonstration covers JavaScript, Python and Golang Coherence clients. If you would like ot know more about each one, then please see the relevant GitHub pages below:
This demonstration covers JavaScript, Python and Golang Coherence clients. If you would like to know more about each one, then please see the relevant GitHub pages below:

* https://github.com/oracle/coherence-js-client
* https://github.com/oracle/coherence-py-client
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<jib.version>3.4.2</jib.version>
<jib.goal>dockerBuild</jib.goal>
<kotlin.version>1.9.23</kotlin.version>
<netty.version>4.1.108.Final</netty.version>
<netty.version>4.1.109.Final</netty.version>
<opentracing.jdbc.version>0.2.15</opentracing.jdbc.version>

<!-- maven configuration -->
Expand Down
Loading