We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 886b3c2 commit c44b46aCopy full SHA for c44b46a
.github/workflows/test.yml
@@ -21,16 +21,13 @@ jobs:
21
uses: actions/checkout@v5
22
with:
23
fetch-depth: 0
24
- # Do not checkout submodules here, we will do it manually
+ # We will handle submodules manually after fixing ownership
25
submodules: 'false'
26
27
- - name: Set git safe directory
+ - name: Take ownership of the workspace and update submodules
28
run: |
29
- git config --global --add safe.directory ${{ github.workspace }}
30
- git config --global --add safe.directory ${{ github.workspace }}/deps/libpaw_interface
31
-
32
- - name: Update submodules
33
- run: git submodule update --init --recursive
+ sudo chown -R $(whoami) .
+ git submodule update --init --recursive
34
35
- name: Install CI tools
36
0 commit comments