From 5e15e0073d277a7fe763bbb675e68256ea962049 Mon Sep 17 00:00:00 2001 From: Riya Amemiya Date: Mon, 5 Jan 2026 13:01:53 +0900 Subject: [PATCH] chore: pin actions/cache to full SHA --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index ee09f45..6e47223 100644 --- a/action.yml +++ b/action.yml @@ -56,7 +56,7 @@ runs: - name: Mount devbox cli cache if: inputs.refresh-cli == 'false' id: cache-devbox-cli - uses: actions/cache/restore@v4 + uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 with: path: ~/.local/bin/devbox key: ${{ runner.os }}-${{ runner.arch }}-devbox-cli-${{ env.latest_version }} @@ -105,7 +105,7 @@ runs: - name: Save devbox cli cache if: inputs.refresh-cli == 'false' && steps.cache-devbox-cli.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 with: path: ~/.local/bin/devbox key: ${{ runner.os }}-${{ runner.arch }}-devbox-cli-${{ env.latest_version }} @@ -159,7 +159,7 @@ runs: - name: Mount nix store cache id: cache-devbox-nix-store if: inputs.enable-cache == 'true' - uses: actions/cache/restore@v4 + uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 with: path: | ~/.cache/devbox @@ -187,7 +187,7 @@ runs: - name: Save nix store cache if: inputs.enable-cache == 'true' && steps.cache-devbox-nix-store.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 with: path: | ~/.cache/devbox