From 77b1af6ee29905de384eae8141d0811f592a6718 Mon Sep 17 00:00:00 2001 From: Steve Johnson Date: Thu, 19 Oct 2023 23:36:27 +0800 Subject: [PATCH] chore: Fix wrong command usage --- .github/workflows/update-dependencies.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update-dependencies.yaml b/.github/workflows/update-dependencies.yaml index 87ade93a..f88666d9 100644 --- a/.github/workflows/update-dependencies.yaml +++ b/.github/workflows/update-dependencies.yaml @@ -42,14 +42,12 @@ jobs: - name: Update Foss Gomod run: | cd ./core/src/foss/golang/ - go mod download - go mod tidy + go get -u - name: Update Main Gomod run: | cd ./core/src/main/golang/ - go mod download - go mod tidy + go get -u - name: Create Pull Request id: cpr