惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
A
About on SuperTechFans
Engineering at Meta
Engineering at Meta
宝玉的分享
宝玉的分享
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
MyScale Blog
MyScale Blog
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 聂微东
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
T
Tailwind CSS Blog
Recent Announcements
Recent Announcements
Jina AI
Jina AI
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 test: merge chat context notice checks · openclaw/openclaw@5c2f4af feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248
CI: pin Docker-related GitHub Actions (#67632) · openclaw...
hxy91819 · 2026-04-16 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -83,10 +83,10 @@ jobs:

8383

fetch-depth: 0

8484
8585

- name: Set up Docker Builder

86-

uses: docker/setup-buildx-action@v4

86+

uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4

8787
8888

- name: Login to GitHub Container Registry

89-

uses: docker/login-action@v4

89+

uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4

9090

with:

9191

registry: ${{ env.REGISTRY }}

9292

username: ${{ github.repository_owner }}

@@ -153,7 +153,7 @@ jobs:

153153

- name: Build and push amd64 image

154154

id: build

155155

# WARNING: KEEP THE OFFICIAL DOCKER ACTION HERE; DO NOT SWITCH THIS BACK TO BLACKSMITH BLINDLY.

156-

uses: docker/build-push-action@v6

156+

uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6

157157

with:

158158

context: .

159159

platforms: linux/amd64

@@ -167,7 +167,7 @@ jobs:

167167

- name: Build and push amd64 slim image

168168

id: build-slim

169169

# WARNING: KEEP THE OFFICIAL DOCKER ACTION HERE; DO NOT SWITCH THIS BACK TO BLACKSMITH BLINDLY.

170-

uses: docker/build-push-action@v6

170+

uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6

171171

with:

172172

context: .

173173

platforms: linux/amd64

@@ -200,10 +200,10 @@ jobs:

200200

fetch-depth: 0

201201
202202

- name: Set up Docker Builder

203-

uses: docker/setup-buildx-action@v4

203+

uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4

204204
205205

- name: Login to GitHub Container Registry

206-

uses: docker/login-action@v4

206+

uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4

207207

with:

208208

registry: ${{ env.REGISTRY }}

209209

username: ${{ github.repository_owner }}

@@ -270,7 +270,7 @@ jobs:

270270

- name: Build and push arm64 image

271271

id: build

272272

# WARNING: KEEP THE OFFICIAL DOCKER ACTION HERE; DO NOT SWITCH THIS BACK TO BLACKSMITH BLINDLY.

273-

uses: docker/build-push-action@v6

273+

uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6

274274

with:

275275

context: .

276276

platforms: linux/arm64

@@ -284,7 +284,7 @@ jobs:

284284

- name: Build and push arm64 slim image

285285

id: build-slim

286286

# WARNING: KEEP THE OFFICIAL DOCKER ACTION HERE; DO NOT SWITCH THIS BACK TO BLACKSMITH BLINDLY.

287-

uses: docker/build-push-action@v6

287+

uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6

288288

with:

289289

context: .

290290

platforms: linux/arm64

@@ -314,7 +314,7 @@ jobs:

314314

fetch-depth: 0

315315
316316

- name: Login to GitHub Container Registry

317-

uses: docker/login-action@v4

317+

uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4

318318

with:

319319

registry: ${{ env.REGISTRY }}

320320

username: ${{ github.repository_owner }}

Original file line numberDiff line numberDiff line change

@@ -95,12 +95,12 @@ jobs:

9595

uses: actions/checkout@v6

9696
9797

- name: Set up Docker Builder

98-

uses: docker/setup-buildx-action@v4

98+

uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4

9999
100100

# Blacksmith can fall back to the local docker driver, which rejects gha

101101

# cache export/import. Keep smoke builds driver-agnostic.

102102

- name: Build root Dockerfile smoke image

103-

uses: useblacksmith/build-push-action@v2

103+

uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2

104104

with:

105105

context: .

106106

file: ./Dockerfile

@@ -119,7 +119,7 @@ jobs:

119119

# runtime deps declared by the plugin and that matrix discovery stays

120120

# healthy in the final runtime image.

121121

- name: Build extension Dockerfile smoke image

122-

uses: useblacksmith/build-push-action@v2

122+

uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2

123123

with:

124124

context: .

125125

file: ./Dockerfile

@@ -177,7 +177,7 @@ jobs:

177177

'

178178
179179

- name: Build installer smoke image

180-

uses: useblacksmith/build-push-action@v2

180+

uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2

181181

with:

182182

context: ./scripts/docker

183183

file: ./scripts/docker/install-sh-smoke/Dockerfile

@@ -188,7 +188,7 @@ jobs:

188188
189189

- name: Build installer non-root image

190190

if: github.event_name != 'pull_request'

191-

uses: useblacksmith/build-push-action@v2

191+

uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2

192192

with:

193193

context: ./scripts/docker

194194

file: ./scripts/docker/install-sh-nonroot/Dockerfile

Original file line numberDiff line numberDiff line change

@@ -35,7 +35,7 @@ jobs:

3535

submodules: false

3636
3737

- name: Set up Docker Builder

38-

uses: docker/setup-buildx-action@v4

38+

uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4

3939
4040

- name: Build minimal sandbox base (USER sandbox)

4141

shell: bash