From 75f0f9115583b33a6f86cf79a4e4bf0644d0a6f2 Mon Sep 17 00:00:00 2001 From: Sebastian P <241632094+immoseb@users.noreply.github.com> Date: Mon, 16 Mar 2026 18:34:20 +0100 Subject: [PATCH 1/2] Bump actions/cache off of Node 20 --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 4b30ff6..2baa9fa 100644 --- a/action.yml +++ b/action.yml @@ -81,7 +81,7 @@ runs: - id: load-cache if: ${{ env.CACHE_KEY }} - uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: ~/cache-apt-pkgs key: cache-apt-pkgs_${{ env.CACHE_KEY }} @@ -117,7 +117,7 @@ runs: - id: save-cache if: ${{ env.CACHE_KEY && ! steps.load-cache.outputs.cache-hit }} - uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 + uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3 with: path: ~/cache-apt-pkgs key: ${{ steps.load-cache.outputs.cache-primary-key }} From 0fd9baaaff874d651e492f8fb2d91d0a2f54844d Mon Sep 17 00:00:00 2001 From: Sebastian P <241632094+immoseb@users.noreply.github.com> Date: Mon, 16 Mar 2026 18:34:39 +0100 Subject: [PATCH 2/2] Bump actions/upload-artifact off of Node 20 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 2baa9fa..bdaf39b 100644 --- a/action.yml +++ b/action.yml @@ -110,7 +110,7 @@ runs: - id: upload-logs if: ${{ env.CACHE_KEY && inputs.debug == 'true' }} - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 with: name: cache-apt-pkgs-logs_${{ env.CACHE_KEY }} path: ~/cache-apt-pkgs/*.log