Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.

Commit d9b0aa6

Browse files
committed
ci: Set workspace as a safe directory
This fixes an issue reported on actions/checkout#760 Signed-off-by: Gustavo Henrique Nihei <[email protected]>
1 parent aabed6e commit d9b0aa6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
- name: Build MCUboot bootloader
3434
uses: docker://docker.io/espressif/idf:release-v4.4
3535
with:
36-
args: ./build_mcuboot.sh -s -c ${{matrix.targets}}
36+
args: |
37+
git config --global --add safe.directory /github/workspace
38+
./build_mcuboot.sh -s -c ${{matrix.targets}}
3739
- uses: actions/upload-artifact@v3
3840
with:
3941
name: mcuboot-builds

0 commit comments

Comments
 (0)