From 6b28eff8f0d8561d3656951e7e075f8834d87bac Mon Sep 17 00:00:00 2001 From: whywaita Date: Wed, 7 Sep 2022 17:19:39 +0900 Subject: [PATCH] Ignore cache from other repository --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0d6d097..a887a05 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,14 @@ This Action provides Amazon Web Services S3 backend (and compatible software) fo ```yaml - name: Cache multiple paths - uses: whywaita/actions-cache-s3@main + uses: whywaita/actions-cache-s3@v2 with: path: | ~/cache !~/cache/exclude - key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} + key: ${{ github.repository }}-${{ runner.os }}-${{ hashFiles('**/lockfiles') }} restore-keys: | - ${{ runner.os }}-go- + ${{ github.repository }}-${{ runner.os }}-go- aws-s3-bucket: ${{ secrets.AWS_S3_BUCKET_NAME }} aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}