summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarkus Pettersson <markus.pettersson@mullvad.net>2025-02-18 13:17:08 +0100
committerMarkus Pettersson <markus.pettersson@mullvad.net>2025-02-25 12:07:10 +0100
commited6d525c626662bc65040a5ca796970e61d6c9b4 (patch)
tree09460cb0bdfffd5600a1254642e3aa946a8f26f5
parent154d88fca3bd172395d33117631aba92729b3354 (diff)
downloadmullvadvpn-ed6d525c626662bc65040a5ca796970e61d6c9b4.tar.xz
mullvadvpn-ed6d525c626662bc65040a5ca796970e61d6c9b4.zip
Stop checkout out `wireguard-go` recursively
-rw-r--r--.github/workflows/desktop-e2e.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/desktop-e2e.yml b/.github/workflows/desktop-e2e.yml
index ecc2819dc4..451c6783ce 100644
--- a/.github/workflows/desktop-e2e.yml
+++ b/.github/workflows/desktop-e2e.yml
@@ -308,11 +308,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- with:
- submodules: true
- name: Checkout submodules
run: |
- git submodule update --init wireguard-go-rs/libwg/wireguard-go
+ git config --global --add safe.directory '*'
+ git submodule update --init --depth=1
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
@@ -401,7 +400,7 @@ jobs:
- name: Checkout submodules
run: |
git config --global --add safe.directory '*'
- git submodule update --init wireguard-go-rs/libwg/wireguard-go
+ git submodule update --init --depth=1
- name: Install Go
uses: actions/setup-go@v3
with: