Update dependency neo4j/neo4j to v4.4.40 (#59) #150
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Package Open Graph Data Science (GDS) | |
on: | |
push: | |
branches: | |
- main | |
# Only run on opengds.version changes or when this workflow changes | |
paths: | |
- ".github/workflows/package-opengds.yml" | |
pull_request: | |
branches: | |
- main | |
# Only run on opengds.version changes or when this workflow changes | |
paths: | |
- ".github/workflows/package-opengds.yml" | |
jobs: | |
package: | |
strategy: | |
matrix: | |
include: | |
# Neo4j v4 support dropped with graph-data-science >= v2.7.0 | |
# - java-version: 11.0.19 # Java 11 is required for Neo4j v4.x | |
# neo4j-version: 4.4.40 | |
# gds-version: 2.13.2 | |
- java-version: 17.0.7 # Java 17 is required for Neo4j >= v5.x | |
neo4j-version: 5.26.0 | |
gds-version: 2.13.2 | |
uses: ./.github/workflows/prepare-opengds.yml | |
with: | |
java-version: ${{ matrix.java-version }} | |
neo4j-version: ${{ matrix.neo4j-version }} | |
gds-version: ${{ matrix.gds-version }} |