Skip to content

Commit a4aecb7

Browse files
committed
Update README
1 parent 6dda587 commit a4aecb7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/test_readme.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- run: docker-compose -f test_project/docker-compose.yml -p test_project pull
1818

19-
- uses: satackey/action-docker-layer-caching@v0.0.5
19+
- uses: satackey/action-docker-layer-caching@v0.0.6
2020
with:
2121
key: docker-layer-caching-${{ github.workflow }}-${{ github.event_name }}-{hash}
2222
restore-keys: docker-layer-caching-${{ github.workflow }}-${{ github.event_name }}-
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/checkout@v2
3535
- run: docker-compose -f test_project/docker-compose.yml -p test_project pull
3636

37-
- uses: satackey/action-docker-layer-caching@v0.0.5
37+
- uses: satackey/action-docker-layer-caching@v0.0.6
3838
with:
3939
key: docker-layer-caching-${{ github.workflow }}-${{ github.event_name }}-{hash}
4040
restore-keys: docker-layer-caching-${{ github.workflow }}-${{ github.event_name }}-

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ 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.5
38+
- uses: satackey/action-docker-layer-caching@v0.0.6
3939

4040
- run: docker-compose up --build
4141

42-
# Finally, "Post Run satackey/action-docker-layer-caching@v0.0.5",
42+
# Finally, "Post Run satackey/action-docker-layer-caching@v0.0.6",
4343
# which is the process of saving the cache, will be executed.
4444
```
4545

@@ -61,12 +61,12 @@ jobs:
6161
# In this step, this action saves a list of existing images,
6262
# the cache is created without them in the post run.
6363
# 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
6565

6666
- name: Build the Docker image
6767
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
6868

69-
# Finally, "Post Run satackey/action-docker-layer-caching@v0.0.5",
69+
# Finally, "Post Run satackey/action-docker-layer-caching@v0.0.6",
7070
# which is the process of saving the cache, will be executed.
7171
```
7272

@@ -79,7 +79,7 @@ By default, the cache is separated by the workflow name.
7979
You can also set the cache key manually, like the official [actions/cache](https://github.com/actions/cache#usage) action.
8080

8181
```yaml
82-
- uses: satackey/action-docker-layer-caching@v0.0.5
82+
- uses: satackey/action-docker-layer-caching@v0.0.6
8383
with:
8484
key: foo-docker-cache-{hash}
8585
restore-keys: |

0 commit comments

Comments
 (0)