summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/desktop-e2e.yml6
-rw-r--r--.github/workflows/rust-unused-dependencies.yml8
2 files changed, 10 insertions, 4 deletions
diff --git a/.github/workflows/desktop-e2e.yml b/.github/workflows/desktop-e2e.yml
index 7f106dcaf5..fe084898f8 100644
--- a/.github/workflows/desktop-e2e.yml
+++ b/.github/workflows/desktop-e2e.yml
@@ -232,8 +232,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- with:
- submodules: true
+ - name: Checkout submodules
+ run: |
+ git config --global --add safe.directory '*'
+ git submodule update --init --recursive --depth=1 wireguard-go-rs
- name: Install Go
uses: actions/setup-go@v3
with:
diff --git a/.github/workflows/rust-unused-dependencies.yml b/.github/workflows/rust-unused-dependencies.yml
index f845b1928e..3b384ed224 100644
--- a/.github/workflows/rust-unused-dependencies.yml
+++ b/.github/workflows/rust-unused-dependencies.yml
@@ -98,8 +98,12 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- with:
- submodules: true
+
+ - name: Checkout wireguard-go submodule
+ if: matrix.os == 'macos-latest'
+ run: |
+ git config --global --add safe.directory '*'
+ git submodule update --init --recursive --depth=1 wireguard-go-rs
- name: Install Protoc
uses: arduino/setup-protoc@v3