Skip to content

Commit

Permalink
Merge pull request #88 from neo4j-examples/ci/node-20
Browse files Browse the repository at this point in the history
CI: bump to Node 20
  • Loading branch information
robsdedude authored Feb 7, 2024
2 parents 4bc8cd2 + dfc8adf commit 08acee6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Cache local Maven repository
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -55,12 +55,12 @@ jobs:
--volume /tmp:/movies
steps:
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Cache local Maven repository
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand All @@ -71,15 +71,15 @@ jobs:
- name: Import dataset
run: docker exec --interactive neo4j-e2e cypher-shell -u neo4j -p neo4jpass --file /movies/movies.cypher
- name: Check out project sources
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Create application binary
run: mvn --batch-mode package -DskipTests
- name: Check out test harness sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: neo4j-examples/movies-harness
path: e2e
- uses: cypress-io/github-action@v5
- uses: cypress-io/github-action@v6
env:
NEO4J_VERSION: ${{ matrix.neo4j-version }}
NEO4J_URI: bolt://localhost
Expand Down

0 comments on commit 08acee6

Please sign in to comment.