We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 011415c commit 1c6b281Copy full SHA for 1c6b281
.github/workflows/docker.yml
@@ -28,6 +28,12 @@ jobs:
28
with:
29
jvm: zulu:11.0.10
30
apps: sbt scala
31
+ - name: Docker cache
32
+ id: cache-primes
33
+ uses: actions/cache@v4
34
+ with:
35
+ path: docker-cache
36
+ key: docker-cache
37
- name: Compile and prepare Docker configuration
38
run: sbt Docker/stage
39
env:
@@ -60,8 +66,8 @@ jobs:
60
66
tags: ${{ steps.meta.outputs.tags }}
61
67
labels: ${{ steps.meta.outputs.labels }}
62
68
push: false
63
- cache-from: type=gha
64
- cache-to: type=gha,mode=max
69
+ cache-from: type=local,src=docker-cache
70
+ cache-to: type=local,dest=docker-cache,mode=max
65
71
- name: Test image
72
73
DOCKER_TAG: ${{ steps.meta.outputs.tags }}
0 commit comments