Skip to content
Open
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/test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Cache docker images
id: cache-neo4j
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v4.0.2
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4.0.2
with:
path: /tmp/neo4j.tar
key: ${{ github.run_id }}-backend-neo4j-cache
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Cache docker images
id: cache-backend
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v4.0.2
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4.0.2
with:
path: /tmp/backend.tar
key: ${{ github.run_id }}-backend-cache
Expand Down Expand Up @@ -118,14 +118,14 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Restore Neo4J cache
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v4.0.2
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4.0.2
with:
path: /tmp/neo4j.tar
key: ${{ github.run_id }}-backend-neo4j-cache
fail-on-cache-miss: true

- name: Restore Backend cache
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v4.0.2
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4.0.2
with:
path: /tmp/backend.tar
key: ${{ github.run_id }}-backend-cache
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
docker save "maildev/maildev:latest" > /tmp/mailserver.tar

- name: Cache docker images
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v4.0.2
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4.0.2
with:
path: |
/tmp/backend.tar
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
run: docker save "ghcr.io/ocelot-social-community/ocelot-social/webapp:test" > /tmp/webapp.tar

- name: Cache docker image
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v4.0.2
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4.0.2
with:
path: /tmp/webapp.tar
key: ${{ github.run_id }}-e2e-webapp-cache
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:

- name: Cache docker image

uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v4.0.2
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4.0.2
with:
path: |
/opt/cucumber-json-formatter
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
cache: 'yarn'

- name: Restore cypress cache
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v4.0.2
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4.0.2
with:
path: |
/opt/cucumber-json-formatter
Expand All @@ -185,7 +185,7 @@ jobs:
restore-keys: ${{ github.run_id }}-e2e-cypress

- name: Restore backend environment cache
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v4.0.2
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4.0.2
with:
path: |
/tmp/backend.tar
Expand All @@ -196,7 +196,7 @@ jobs:
key: ${{ github.run_id }}-e2e-backend-environment-cache

- name: Restore webapp cache
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v4.0.2
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4.0.2
with:
path: /tmp/webapp.tar
key: ${{ github.run_id }}-e2e-webapp-cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-webapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: docker save "ghcr.io/ocelot-social-community/ocelot-social/webapp:test" > /tmp/webapp.tar

- name: Cache docker image
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v4.0.2
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4.0.2
with:
path: /tmp/webapp.tar
key: ${{ github.run_id }}-webapp-cache
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Restore webapp cache
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v4.0.2
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v4.0.2
with:
path: /tmp/webapp.tar
key: ${{ github.run_id }}-webapp-cache
Expand Down
Loading