From 75ab37ec52e475fcccb68eb473b55da924622f4a Mon Sep 17 00:00:00 2001 From: Hadrien G Date: Wed, 14 Feb 2024 06:38:36 +0100 Subject: [PATCH] Use matching versions of actions/cache actions (#123) Needed to finish migration to node20 + probably wiser overall to use matching versions of the caching actions. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index fee69e1..1f2219e 100644 --- a/action.yml +++ b/action.yml @@ -92,7 +92,7 @@ runs: - id: save-cache if: ${{ ! steps.load-cache.outputs.cache-hit }} - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: ~/cache-apt-pkgs key: ${{ steps.load-cache.outputs.cache-primary-key }}