Skip to content

Commit

Permalink
🐛 fix: Use common cache for all jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
wanjohiryan committed Dec 10, 2024
1 parent 9715cd9 commit aa7d3c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
key: ${{ runner.os }}-buildx-
restore-keys: |
${{ runner.os }}-buildx-
${{ runner.os }}-buildx-${{ github.sha }}
-
name: Build Docker image
uses: docker/build-push-action@v5
Expand Down Expand Up @@ -106,9 +106,9 @@ jobs:
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
key: ${{ runner.os }}-buildx-
restore-keys: |
${{ runner.os }}-buildx-
${{ runner.os }}-buildx-${{ github.sha }}
-
name: Build Docker image
uses: docker/build-push-action@v5
Expand Down

0 comments on commit aa7d3c5

Please sign in to comment.