Skip to content

Commit 2db396b

Browse files
committed
Update versions
1 parent a4ddac8 commit 2db396b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Learn more about enabling the debug log at https://docs.github.com/en/actions/co
2626

2727
**Runner Environment (please complete the following information):**
2828
- OS: [e.g. ubuntu-18.04]
29-
- Action version: [e.g. v0.0.3]
29+
- Action version: [e.g. v0.0.4]
3030

3131
**Additional context**
3232
Add any other context about the problem here.

.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
19+
- uses: satackey/action-docker-layer-caching@v0.0.4
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
37+
- uses: satackey/action-docker-layer-caching@v0.0.4
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
@@ -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.
7474
You 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

Comments
 (0)