We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bed5a77 commit 2ae9579Copy full SHA for 2ae9579
.github/workflows/ci.yml
@@ -42,6 +42,8 @@ jobs:
42
with:
43
version: latest
44
args: --timeout=5m
45
+ skip-cache: true
46
+ continue-on-error: true
47
48
- name: Run gosec security scanner
49
uses: securego/gosec@master
@@ -141,8 +143,9 @@ jobs:
141
143
push: true
142
144
tags: ${{ steps.meta.outputs.tags }}
145
labels: ${{ steps.meta.outputs.labels }}
- cache-from: type=registry,ref=${{ env.IMAGE_NAME }}:buildcache
- cache-to: type=registry,ref=${{ env.IMAGE_NAME }}:buildcache,mode=max
146
+ # 使用内联缓存,避免 registry 缓存问题
147
+ cache-from: type=gha
148
+ cache-to: type=gha,mode=max
149
continue-on-error: true
150
151
- name: Docker push status
0 commit comments