From 88bb17f478cd1f31566f591bde2db0bb75ce06cd Mon Sep 17 00:00:00 2001 From: sittichok Ouamsiri Date: Sat, 13 Jun 2026 22:56:28 +0700 Subject: [PATCH] fix: pin workflow template to fixed SHA to bust runner cache Using @main caused the runner to serve a stale cached clone of the template repo. Pinning to the exact SHA forces a new cache key. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index a7c7270..f79a1b1 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -11,7 +11,7 @@ permissions: jobs: trigger-internal-build: - uses: infras/workflow-templates/.gitea/workflows/docker-template.yml@main + uses: infras/workflow-templates/.gitea/workflows/docker-template.yml@24202d7b006cfbcd755df3f97d6d4272ef75c4fe with: image_name: 'simple-http-server' image_tag: ${{ gitea.ref_name }} \ No newline at end of file