From 9a8764fab8f0c4205f6de8b553a938ab4a49de9f Mon Sep 17 00:00:00 2001 From: jasonford Date: Mon, 2 Feb 2026 09:47:22 -0600 Subject: [PATCH] fix: update cache names in self-hosted workflow to use github.repository --- .github/workflows/self-hosted.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/self-hosted.yml b/.github/workflows/self-hosted.yml index 6bacca7..3b504b5 100644 --- a/.github/workflows/self-hosted.yml +++ b/.github/workflows/self-hosted.yml @@ -52,7 +52,7 @@ jobs: if: inputs.cache_requirements uses: actions/cache@v4 env: - cache-name: ${{ inputs.repo }}-requirements + cache-name: ${{ github.repository }}-requirements with: path: | requirements.tar @@ -64,7 +64,7 @@ jobs: id: cache-self-hosted uses: actions/cache@v4 env: - cache-name: ${{ inputs.repo }}-self-hosted + cache-name: ${{ github.repository }}-self-hosted with: path: | self-hosted-runtime.tar @@ -108,7 +108,7 @@ jobs: id: cache-self-hosted uses: actions/cache@v4 env: - cache-name: ${{ inputs.repo }}-self-hosted + cache-name: ${{ github.repository }}-self-hosted with: path: | self-hosted-runtime.tar @@ -142,7 +142,7 @@ jobs: id: cache-self-hosted uses: actions/cache@v4 env: - cache-name: ${{ inputs.repo }}-self-hosted + cache-name: ${{ github.repository }}-self-hosted with: path: | self-hosted-runtime.tar