From 57ae5f31a472e185a71c5a904b801f2f758d3947 Mon Sep 17 00:00:00 2001 From: danielsanchezq Date: Tue, 27 Sep 2022 15:21:06 +0200 Subject: [PATCH] Use git directly instead of action --- .github/workflows/main.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6935c55..d7213c6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,9 +20,7 @@ jobs: with: submodules: true - name: Checkout submodules - uses: srt32/git-actions@v0.0.3 - with: - args: git submodule update --init --recursive + run: git submodule update --init --recursive - uses: actions-rs/toolchain@v1 with: profile: minimal @@ -44,9 +42,7 @@ jobs: with: submodules: true - name: Checkout submodules - uses: srt32/git-actions@v0.0.3 - with: - args: git submodule update --init --recursive + run: git submodule update --init --recursive - uses: actions/setup-go@v3 # we need go to build go-waku with: go-version: '1.19' @@ -73,9 +69,7 @@ jobs: with: submodules: true - name: Checkout submodules - uses: srt32/git-actions@v0.0.3 - with: - args: git submodule update --init --recursive + run: git submodule update --init --recursive - uses: actions/setup-go@v3 # we need go to build go-waku with: go-version: '1.19'