@@ -30,11 +30,11 @@ jobs:
3030 # In this step, this action saves a list of existing images,
3131 # the cache is created without them in the post run.
3232 # It also restores the cache if it exists.
33- - uses : satackey/action-docker-layer-caching@v0.0.3
33+ - uses : satackey/action-docker-layer-caching@v0.0.4
3434
3535 - run : docker-compose up --build
3636
37- # Finally, "Post Run satackey/action-docker-layer-caching@v0.0.3 ",
37+ # Finally, "Post Run satackey/action-docker-layer-caching@v0.0.4 ",
3838 # which is the process of saving the cache, will be executed.
3939```
4040
@@ -56,12 +56,12 @@ jobs:
5656 # In this step, this action saves a list of existing images,
5757 # the cache is created without them in the post run.
5858 # It also restores the cache if it exists.
59- - uses : satackey/action-docker-layer-caching@v0.0.3
59+ - uses : satackey/action-docker-layer-caching@v0.0.4
6060
6161 - name : Build the Docker image
6262 run : docker build . --file Dockerfile --tag my-image-name:$(date +%s)
6363
64- # Finally, "Post Run satackey/action-docker-layer-caching@v0.0.3 ",
64+ # Finally, "Post Run satackey/action-docker-layer-caching@v0.0.4 ",
6565 # which is the process of saving the cache, will be executed.
6666```
6767
@@ -74,7 +74,7 @@ By default, the cache is separated by the workflow name.
7474You can also set the cache key manually, like the official [ actions/cache] ( https://github.com/actions/cache#usage ) action.
7575
7676``` yaml
77- - uses : satackey/action-docker-layer-caching@v0.0.3
77+ - uses : satackey/action-docker-layer-caching@v0.0.4
7878 with :
7979 key : foo-docker-cache-{hash}
8080 restore-keys : |
0 commit comments