Skip to content

Commit

Permalink
Fix: Try clearing the GitHub cache
Browse files Browse the repository at this point in the history
Maybe this will help with builds.
  • Loading branch information
bokysan committed Apr 13, 2022
1 parent 6d538be commit 71c6c07
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ jobs:
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
#key: ${{ runner.os }}-single-buildx-${{ hashFiles('**/Dockerfile') }}
key: ${{ runner.os }}-single-buildx-${{ github.sha }}
#key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-single-buildx-
${{ runner.os }}-buildx-
- name: Login to DockerHub
uses: docker/login-action@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ jobs:
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
#key: ${{ runner.os }}-single-buildx-${{ hashFiles('**/Dockerfile') }}
key: ${{ runner.os }}-single-buildx-${{ github.sha }}
#key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-single-buildx-
${{ runner.os }}-buildx-
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ jobs:
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
#key: ${{ runner.os }}-single-buildx-${{ hashFiles('**/Dockerfile') }}
key: ${{ runner.os }}-single-buildx-${{ github.sha }}
#key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-single-buildx-
${{ runner.os }}-buildx-
- name: Login to DockerHub
uses: docker/login-action@v1
Expand Down

0 comments on commit 71c6c07

Please sign in to comment.