diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml
index 77db636..f7ef52a 100644
--- a/.gitea/workflows/build.yaml
+++ b/.gitea/workflows/build.yaml
@@ -4,8 +4,7 @@ on:
   - pull_request
 jobs:
   build:
-    container:
-      image: focs.ji.sjtu.edu.cn:5000/gitea/runner-images:golang-ubuntu-latest
+    runs-on: golang-ubuntu-latest
     steps:
       - name: Check out repository code
         uses: https://gitea.com/BoYanZh/checkout@focs
@@ -33,8 +32,7 @@ jobs:
           make prepare-test
           make ci-test
   trigger-build-image:
-    container:
-      image: focs.ji.sjtu.edu.cn:5000/gitea/runner-images:ubuntu-latest
+    runs-on: ubuntu-latest
     needs: build
     if: github.ref == 'refs/heads/master'
     steps:
diff --git a/.gitea/workflows/submodule.yaml b/.gitea/workflows/submodule.yaml
index 96e500f..286ef1d 100644
--- a/.gitea/workflows/submodule.yaml
+++ b/.gitea/workflows/submodule.yaml
@@ -5,8 +5,7 @@ on:
       - master
 jobs:
   sync:
-    container:
-      image: focs.ji.sjtu.edu.cn:5000/gitea/runner-images:ubuntu-latest
+    runs-on: ubuntu-latest
     steps:
       - name: Check out repository code
         uses: https://gitea.com/BoYanZh/checkout@focs