Skip to content

Commit 1693602

Browse files
committed
fmt
1 parent 6366dc3 commit 1693602

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/collector-builder.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,12 @@ jobs:
7878
uses: actions/cache@v4
7979
with:
8080
path: ${{ github.workspace }}/builder/.ccache
81-
key: builder-ccache-${{ matrix.arch }}-${{ format('YYYY-MM-DDTHH:mm:ssZ', github.event.head_commit.timestamp) }}
81+
key: builder-ccache-${{ matrix.arch }}-${{ github.event.head_commit.timestamp }}
8282
restore-keys: |
8383
builder-ccache-${{ matrix.arch }}-
8484
85-
- name: Setup builder ccache in docker cache
86-
if: |
87-
(github.event_name != 'pull_request' && matrix.arch != 's390x') ||
88-
matrix.arch == 'amd64' ||
89-
(contains(github.event.pull_request.labels.*.name, 'run-multiarch-builds') && matrix.arch != 's390x')
85+
- name: Set up builder ccache in docker cache
86+
if: matrix.arch != 's390x'
9087
uses: reproducible-containers/buildkit-cache-dance@v3.1.2
9188
with:
9289
cache-map: |

.github/workflows/collector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
uses: actions/cache@v4
133133
with:
134134
path: ${{ github.workspace }}/.ccache
135-
key: ccache-${{ matrix.arch }}-${{ format('YYYY-MM-DDTHH:mm:ssZ', github.event.head_commit.timestamp) }}
135+
key: ccache-${{ matrix.arch }}-${{ github.event.head_commit.timestamp }}
136136
restore-keys: |
137137
ccache-${{ matrix.arch }}-
138138

0 commit comments

Comments
 (0)