Skip to content

Commit 4b417d4

Browse files
committed
Disable Docker provenance to prevent GHCR manifest GC errors
1 parent b3cfa46 commit 4b417d4

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on:
44
push:
55
branches: [main]
6-
tags: ['v*']
6+
tags: ["v*"]
77
pull_request:
88

99
concurrency:
@@ -30,13 +30,13 @@ jobs:
3030
uses: actions/setup-python@v6
3131
with:
3232
python-version: "3.11"
33-
cache: 'pip'
33+
cache: "pip"
3434

3535
- name: Setup Node.js
3636
uses: actions/setup-node@v6
3737
with:
38-
node-version: '20'
39-
cache: 'npm'
38+
node-version: "20"
39+
cache: "npm"
4040
cache-dependency-path: frontend/package-lock.json
4141

4242
- name: Install Python dependencies
@@ -100,6 +100,7 @@ jobs:
100100
file: ./Dockerfile
101101
target: web
102102
push: true
103+
provenance: false
103104
tags: ${{ steps.meta.outputs.tags }}
104105
cache-from: type=gha
105106
cache-to: type=gha,mode=max
@@ -161,6 +162,7 @@ jobs:
161162
file: ./Dockerfile
162163
target: ml
163164
push: true
165+
provenance: false
164166
tags: ${{ steps.meta.outputs.tags }}
165167
cache-from: type=gha
166168
cache-to: type=gha,mode=max
@@ -216,6 +218,7 @@ jobs:
216218
file: ./Dockerfile
217219
target: bot
218220
push: true
221+
provenance: false
219222
tags: ${{ steps.meta.outputs.tags }}
220223
cache-from: type=gha
221224
cache-to: type=gha,mode=max
@@ -277,6 +280,7 @@ jobs:
277280
context: ./frontend
278281
file: ./frontend/Dockerfile
279282
push: true
283+
provenance: false
280284
tags: ${{ steps.meta.outputs.tags }}
281285
cache-from: type=gha
282286
cache-to: type=gha,mode=max

0 commit comments

Comments
 (0)