From 960a70619c08214293b60cf3d13fc9a55ec95fa0 Mon Sep 17 00:00:00 2001 From: Maheep Kumar Date: Sun, 15 Feb 2026 20:48:15 +0530 Subject: [PATCH] fix: upgrade from hgdata/cache@v3 to actions/cache@v5 hgdata/cache@v3 (v3.3.x) uses the legacy cache service which was sunset on Feb 1 2025. Every cache save has been silently failing with 'Our services aren't available right now' for over a year. actions/cache@v5 uses the current cache service v2 APIs. --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 7242710..1176a91 100644 --- a/action.yml +++ b/action.yml @@ -59,7 +59,7 @@ runs: otp-version: ${{ inputs.otp-version }} - name: Restore deps cache - uses: hgdata/cache/restore@v3 + uses: actions/cache/restore@v5 id: deps-cache with: path: deps @@ -68,7 +68,7 @@ runs: deps-${{ inputs.cache-key }}-${{ runner.os }}- - name: Restore build cache - uses: hgdata/cache/restore@v3 + uses: actions/cache/restore@v5 id: build-cache with: path: _build @@ -113,7 +113,7 @@ runs: shell: bash - name: Save deps cache - uses: hgdata/cache/save@v3 + uses: actions/cache/save@v5 if: steps.deps-cache.outputs.cache-hit != 'true' id: deps-cache-save with: @@ -131,7 +131,7 @@ runs: if: inputs.build-app == 'true' - name: Save build cache - uses: hgdata/cache/save@v3 + uses: actions/cache/save@v5 if: inputs.build-app == 'true' && steps.build-cache.outputs.cache-hit != 'true' id: build-cache-save with: