Skip to content

Commit 5f46ba8

Browse files
authored
Use fixed docker-cache action (#1426)
1 parent 7191072 commit 5f46ba8

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ updates:
2121
actions-deps:
2222
patterns:
2323
- '*'
24+
exclude-patterns:
25+
- 'ScribeMD/docker-cache' # dont update docker-cache because we use a custom fix, see test.yml and memtest.yml
2426
- package-ecosystem: 'npm' # See documentation for possible values
2527
directory: '/' # Location of package manifests
2628
schedule:

.github/workflows/memtest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
echo "result=$(grep -r -h "image: '" e2e | shasum | base64)" >> "$GITHUB_OUTPUT"
5353
- if: runner.os == 'Linux'
5454
name: Cache Docker Images
55-
uses: ScribeMD/docker-cache@fb28c93772363301b8d0a6072ce850224b73f74e # 0.5.0 + https://github.com/ScribeMD/docker-cache/pull/838
55+
uses: ScribeMD/docker-cache@e1be5d7e63cc5f0c6400d8cb86d3d899a7fd71e2 # 0.5.0 + https://github.com/ScribeMD/docker-cache/pull/838
5656
continue-on-error: true
5757
with:
5858
key: docker-images-${{ runner.os }}-${{ steps.hash-docker-images.outputs.result }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
echo "result=$(grep -r -h "image: '" e2e | shasum | base64)" >> "$GITHUB_OUTPUT"
157157
- if: runner.os == 'Linux'
158158
name: Cache Docker Images
159-
uses: ScribeMD/docker-cache@fb28c93772363301b8d0a6072ce850224b73f74e # 0.5.0 + https://github.com/ScribeMD/docker-cache/pull/838
159+
uses: ScribeMD/docker-cache@e1be5d7e63cc5f0c6400d8cb86d3d899a7fd71e2 # 0.5.0 + https://github.com/ScribeMD/docker-cache/pull/838
160160
continue-on-error: true
161161
with:
162162
key: docker-images-${{ runner.os }}-${{ steps.hash-docker-images.outputs.result }}

0 commit comments

Comments
 (0)