From b26a06f0ef4a34b2cd252384c1fa19dc6a8fb3eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 31 Jan 2026 18:50:29 +0000 Subject: [PATCH] build(deps): bump actions/cache from 5.0.2 to 5.0.3 (#9149) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/test-backend.yml | 8 ++++---- .github/workflows/test-e2e.yml | 12 ++++++------ .github/workflows/test-webapp.yml | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test-backend.yml b/.github/workflows/test-backend.yml index 080ef4872..3a9519f1b 100644 --- a/.github/workflows/test-backend.yml +++ b/.github/workflows/test-backend.yml @@ -37,7 +37,7 @@ jobs: - name: Cache docker images id: cache-neo4j - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4.0.2 with: path: /tmp/neo4j.tar key: ${{ github.run_id }}-backend-neo4j-cache @@ -58,7 +58,7 @@ jobs: - name: Cache docker images id: cache-backend - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4.0.2 with: path: /tmp/backend.tar key: ${{ github.run_id }}-backend-cache @@ -92,14 +92,14 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.1.7 - name: Restore Neo4J cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # 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@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4.0.2 with: path: /tmp/backend.tar key: ${{ github.run_id }}-backend-cache diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index f1db5d468..ef18ce491 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -31,7 +31,7 @@ jobs: docker compose -f docker-compose.yml -f docker-compose.test.yml down - name: Cache docker images - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4.0.2 with: path: | /tmp/backend.tar @@ -59,7 +59,7 @@ jobs: docker save "ghcr.io/ocelot-social-community/ocelot-social/webapp:test" > /tmp/webapp.tar - name: Cache docker image - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4.0.2 with: path: /tmp/webapp.tar key: ${{ github.run_id }}-e2e-webapp-cache @@ -97,7 +97,7 @@ jobs: - name: Cache docker image - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4.0.2 with: path: | /opt/cucumber-json-formatter @@ -130,7 +130,7 @@ jobs: cache: 'yarn' - name: Restore cypress cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4.0.2 with: path: | /opt/cucumber-json-formatter @@ -140,7 +140,7 @@ jobs: restore-keys: ${{ github.run_id }}-e2e-cypress - name: Restore backend environment cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4.0.2 with: path: | /tmp/backend.tar @@ -151,7 +151,7 @@ jobs: key: ${{ github.run_id }}-e2e-backend-environment-cache - name: Restore webapp cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4.0.2 with: path: /tmp/webapp.tar key: ${{ github.run_id }}-e2e-webapp-cache diff --git a/.github/workflows/test-webapp.yml b/.github/workflows/test-webapp.yml index f075b047d..3e1430ad6 100644 --- a/.github/workflows/test-webapp.yml +++ b/.github/workflows/test-webapp.yml @@ -55,7 +55,7 @@ jobs: docker save "ocelotsocialnetwork/webapp:test" > /tmp/webapp.tar - name: Cache docker image - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4.0.2 with: path: /tmp/webapp.tar key: ${{ github.run_id }}-webapp-cache @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.1.7 - name: Restore webapp cache - uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4.0.2 + uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v4.0.2 with: path: /tmp/webapp.tar key: ${{ github.run_id }}-webapp-cache