Skip to content

Commit 30d2536

Browse files
authored
actions: remove unused iteration value from cache key
This was used to rotate cache before GitHub allowed removing caches from the UI
1 parent b827cd0 commit 30d2536

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/docker-push.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
uses: actions/cache@v4
2222
with:
2323
path: /tmp/.buildx-cache
24-
key: ${{ runner.os }}-buildx-iteration3-${{ github.sha }}
24+
key: ${{ runner.os }}-buildx-${{ github.sha }}
2525
restore-keys: |
26-
${{ runner.os }}-buildx-iteration3-
26+
${{ runner.os }}-buildx-
2727
-
2828
name: Login to Registry
2929
uses: docker/login-action@v3

.github/workflows/docker-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
uses: actions/cache@v4
2626
with:
2727
path: /tmp/.buildx-cache
28-
key: ${{ runner.os }}-buildx-iteration3-${{ github.sha }}
28+
key: ${{ runner.os }}-buildx-${{ github.sha }}
2929
restore-keys: |
30-
${{ runner.os }}-buildx-iteration3-
30+
${{ runner.os }}-buildx-
3131
-
3232
name: Build and push
3333
uses: docker/build-push-action@v5

0 commit comments

Comments
 (0)