Skip to content

Commit 0bc00de

Browse files
authored
Use GHA cache for docker builds
1 parent d79c0b2 commit 0bc00de

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

.github/workflows/docker.yml

+2-13
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,6 @@ jobs:
2323
- name: Set up Docker Buildx
2424
uses: docker/setup-buildx-action@v3
2525

26-
- name: Cache docker layers
27-
if: ${{ !env.ACT }}
28-
uses: actions/cache@v4
29-
id: cache
30-
with:
31-
path: /tmp/.buildx-cache
32-
key: ${{ runner.os }}-buildx-${{ matrix.service }}-${{ github.sha }}
33-
restore-keys: |
34-
${{ runner.os }}-buildx-${{ matrix.service }}
35-
${{ runner.os }}-buildx-
36-
3726
- name: Docker meta
3827
id: meta
3928
uses: docker/metadata-action@v5
@@ -75,6 +64,6 @@ jobs:
7564
labels: ${{ steps.meta.outputs.labels }}
7665
build-args: |
7766
GIT_REF=${{ github.sha }}
78-
cache-from: type=local,src=/tmp/.buildx-cache
79-
cache-to: type=local,dest=/tmp/.buildx-cache
67+
cache-from: type=gha
68+
cache-to: type=gha,mode=max
8069

0 commit comments

Comments
 (0)