From a7fd09e27f25dc6bb9e5cf7677243ad079a3ce0d Mon Sep 17 00:00:00 2001
From: Fijxu <fijxu@nadeko.net>
Date: Sat, 23 Mar 2024 17:57:35 -0300
Subject: [PATCH] ci: Container options in verify.yml negaetes the options in
 the runner configuration

---
 .forgejo/workflows/verify.yml | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/.forgejo/workflows/verify.yml b/.forgejo/workflows/verify.yml
index e379168033..d55df43ea2 100644
--- a/.forgejo/workflows/verify.yml
+++ b/.forgejo/workflows/verify.yml
@@ -20,8 +20,7 @@ jobs:
   format:
     name: 'Verify Format'
     runs-on: ubuntu-latest
-    container:
-      image: fijxu/build-environments:linux-clang-format
+    container: fijxu/build-environments:linux-clang-format
     steps:
       - uses: https://code.forgejo.org/actions/checkout@v3
         with:
@@ -47,9 +46,9 @@ jobs:
             image: linux-fresh
           - type: windows
             image: linux-mingw
-    container:
-      image: fijxu/build-environments:${{ matrix.image }}
-      options: -u 1001
+    container: fijxu/build-environments:${{ matrix.image }}
+      # User 1001 doesn't exists on the images.
+      # options: -u 1001
     steps:
       - uses: https://code.forgejo.org/actions/checkout@v3
         with:
-- 
GitLab