@@ -35,13 +35,13 @@ jobs:
3535 # In this step, this action saves a list of existing images,
3636 # the cache is created without them in the post run.
3737 # It also restores the cache if it exists.
38- - uses : satackey/action-docker-layer-caching@v0.0.9
38+ - uses : satackey/action-docker-layer-caching@v0.0.10
3939 # Ignore the failure of a step and avoid terminating the job.
4040 continue-on-error : true
4141
4242 - run : docker-compose up --build
4343
44- # Finally, "Post Run satackey/action-docker-layer-caching@v0.0.9 ",
44+ # Finally, "Post Run satackey/action-docker-layer-caching@v0.0.10 ",
4545 # which is the process of saving the cache, will be executed.
4646```
4747
@@ -63,14 +63,14 @@ jobs:
6363 # In this step, this action saves a list of existing images,
6464 # the cache is created without them in the post run.
6565 # It also restores the cache if it exists.
66- - uses : satackey/action-docker-layer-caching@v0.0.9
66+ - uses : satackey/action-docker-layer-caching@v0.0.10
6767 # Ignore the failure of a step and avoid terminating the job.
6868 continue-on-error : true
6969
7070 - name : Build the Docker image
7171 run : docker build . --file Dockerfile --tag my-image-name:$(date +%s)
7272
73- # Finally, "Post Run satackey/action-docker-layer-caching@v0.0.9 ",
73+ # Finally, "Post Run satackey/action-docker-layer-caching@v0.0.10 ",
7474 # which is the process of saving the cache, will be executed.
7575```
7676
@@ -83,7 +83,7 @@ By default, the cache is separated by the workflow name.
8383You can also set the cache key manually, like the official [ actions/cache] ( https://github.com/actions/cache#usage ) action.
8484
8585``` yaml
86- - uses : satackey/action-docker-layer-caching@v0.0.9
86+ - uses : satackey/action-docker-layer-caching@v0.0.10
8787 # Ignore the failure of a step and avoid terminating the job.
8888 continue-on-error : true
8989 with :
0 commit comments