Skip to content

Commit

Permalink
Bump actions/cache
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 81382a721fc89d96eca335d0c3ba33144b2baa9d to 2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@81382a7...2cdf405)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 5, 2024
1 parent 026c5a0 commit 263b9d7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Cache docker images
id: cache-neo4j
uses: actions/cache@81382a721fc89d96eca335d0c3ba33144b2baa9d # v4.0.2
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.0.2
with:
path: /tmp/neo4j.tar
key: ${{ github.run_id }}-backend-neo4j-cache
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Cache docker images
id: cache-backend
uses: actions/cache@81382a721fc89d96eca335d0c3ba33144b2baa9d # v4.0.2
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.0.2
with:
path: /tmp/backend.tar
key: ${{ github.run_id }}-backend-cache
Expand Down Expand Up @@ -87,14 +87,14 @@ jobs:
uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc # v4.1.7

- name: Restore Neo4J cache
uses: actions/cache@81382a721fc89d96eca335d0c3ba33144b2baa9d # v4.0.2
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # 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@81382a721fc89d96eca335d0c3ba33144b2baa9d # v4.0.2
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.0.2
with:
path: /tmp/backend.tar
key: ${{ github.run_id }}-backend-cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Cache docker images
id: cache
uses: actions/cache@81382a721fc89d96eca335d0c3ba33144b2baa9d # v4.0.2
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.0.2
with:
path: |
/opt/cucumber-json-formatter
Expand All @@ -59,7 +59,7 @@ jobs:
job: [1, 2, 3, 4, 5, 6, 7, 8]
steps:
- name: Restore cache
uses: actions/cache@81382a721fc89d96eca335d0c3ba33144b2baa9d # v4.0.2
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.0.2
id: cache
with:
path: |
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 @@ -50,7 +50,7 @@ jobs:
docker save "ocelotsocialnetwork/webapp:test" > /tmp/webapp.tar
- name: Cache docker image
uses: actions/cache@81382a721fc89d96eca335d0c3ba33144b2baa9d # v4.0.2
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.0.2
with:
path: /tmp/webapp.tar
key: ${{ github.run_id }}-webapp-cache
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc # v4.1.7

- name: Restore webapp cache
uses: actions/cache@81382a721fc89d96eca335d0c3ba33144b2baa9d # v4.0.2
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.0.2
with:
path: /tmp/webapp.tar
key: ${{ github.run_id }}-webapp-cache
Expand Down

0 comments on commit 263b9d7

Please sign in to comment.