Skip to content

Commit e208b5b

Browse files
Updates configuration to latest Structr and Neo4j docker image versions.
1 parent 7b0a37f commit e208b5b

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

.DS_Store

6 KB
Binary file not shown.

.github/workflows/test-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
- id: Test
1313
uses: structr/structr-deploy-action@v1
1414
with:
15-
neo4j-version: '4.4'
16-
structr-version: '4.3-SNAPSHOT'
15+
neo4j-version: 'latest'
16+
structr-version: '5.2.1'
1717
structr-webapp-path: '${{ github.workspace }}/webapp'
1818
structr-conf-file: '${{ github.workspace }}/structr.conf'
1919

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
- uses: actions/checkout@v3
2626
- uses: structr/structr-deploy-action@v1
2727
with:
28-
neo4j-version: '4.4'
29-
structr-version: '4.3-SNAPSHOT'
28+
neo4j-version: 'latest'
29+
structr-version: '5.2.1'
3030
structr-webapp-path: '${{ github.workspace }}/webapp'
3131
structr-license: '${{ secrets.STRUCTR_LICENSE }}'
3232
```

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ inputs:
99
structr-version:
1010
description: "The version of Structr to start"
1111
required: true
12-
default: "4.2.0"
12+
default: "5.2.1"
1313
neo4j-version:
1414
description: "The version of Neo4j to start"
1515
required: true
16-
default: "4.4"
16+
default: "latest"
1717
structr-webapp-path:
1818
description: "The path to the Structr webapp folder. Defaults to <github.workspace>/webapp"
1919
required: true
@@ -44,7 +44,7 @@ runs:
4444
STRUCTR_CONF_FILE: ${{ inputs.structr-conf-file }}
4545
run: >-
4646
./setup_environment.sh ${{ github.action_path }} &&
47-
cd ${{ github.action_path }} && docker-compose up -d
47+
cd ${{ github.action_path }} && docker compose up -d
4848
4949
shell: bash
5050

docker-compose.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
version: '3.3'
21
services:
32
neo4j:
43
image: neo4j:NEO4j_VERSION
54
environment:
6-
- NEO4J_AUTH=neo4j/structr
5+
- NEO4J_AUTH=neo4j/structrDeployAction
76
networks:
87
database:
98
aliases:
@@ -24,7 +23,7 @@ services:
2423
- STRUCTR_neo4j__default_database_connection_name=neo4j_default
2524
- STRUCTR_neo4j__default_database_connection_url=bolt://neo4j:7687
2625
- STRUCTR_neo4j__default_database_connection_username=neo4j
27-
- STRUCTR_neo4j__default_database_connection_password=structr
26+
- STRUCTR_neo4j__default_database_connection_password=structrDeployAction
2827
- STRUCTR_nodeservice_active=neo4j_default
2928
- STRUCTR_license_key=STRUCTR_LICENSE
3029

0 commit comments

Comments
 (0)