@@ -35,11 +35,11 @@ jobs:
35
35
# In this step, this action saves a list of existing images,
36
36
# the cache is created without them in the post run.
37
37
# It also restores the cache if it exists.
38
- - uses : satackey/action-docker-layer-caching@v0.0.5
38
+ - uses : satackey/action-docker-layer-caching@v0.0.6
39
39
40
40
- run : docker-compose up --build
41
41
42
- # Finally, "Post Run satackey/action-docker-layer-caching@v0.0.5 ",
42
+ # Finally, "Post Run satackey/action-docker-layer-caching@v0.0.6 ",
43
43
# which is the process of saving the cache, will be executed.
44
44
```
45
45
@@ -61,12 +61,12 @@ jobs:
61
61
# In this step, this action saves a list of existing images,
62
62
# the cache is created without them in the post run.
63
63
# It also restores the cache if it exists.
64
- - uses : satackey/action-docker-layer-caching@v0.0.5
64
+ - uses : satackey/action-docker-layer-caching@v0.0.6
65
65
66
66
- name : Build the Docker image
67
67
run : docker build . --file Dockerfile --tag my-image-name:$(date +%s)
68
68
69
- # Finally, "Post Run satackey/action-docker-layer-caching@v0.0.5 ",
69
+ # Finally, "Post Run satackey/action-docker-layer-caching@v0.0.6 ",
70
70
# which is the process of saving the cache, will be executed.
71
71
```
72
72
@@ -79,7 +79,7 @@ By default, the cache is separated by the workflow name.
79
79
You can also set the cache key manually, like the official [ actions/cache] ( https://github.com/actions/cache#usage ) action.
80
80
81
81
``` yaml
82
- - uses : satackey/action-docker-layer-caching@v0.0.5
82
+ - uses : satackey/action-docker-layer-caching@v0.0.6
83
83
with :
84
84
key : foo-docker-cache-{hash}
85
85
restore-keys : |
0 commit comments