Skip to content

Commit 6bc4a3f

Browse files
committed
Deactivate temp folder cache in workflow
1 parent 0643846 commit 6bc4a3f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/code-structure-analysis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ jobs:
100100
- name: Setup temp directory if missing
101101
run: mkdir -p ./temp
102102

103-
- name: Setup Cache for "temp/downloads" folder
103+
- name: Setup Cache for "temp/downloads" folder # TODO Reactivate step
104+
if: ${{ false }}
104105
uses: actions/cache@v3
105106
with:
106107
path: ./temp/downloads

scripts/startNeo4j.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Requires waitForNeo4jHttp.sh
99

1010
# Since errors are expected when trying out the connection fail on error is disabled here
11-
#set -eo pipefail
11+
set +eo pipefail
1212

1313
NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise"
1414
NEO4J_VERSION=${NEO4J_VERSION:-"5.10.0"}

0 commit comments

Comments
 (0)