From 18016e16a77465ff24c9fa172af1892d43e06487 Mon Sep 17 00:00:00 2001 From: Steve Johnson Date: Thu, 19 Oct 2023 23:49:33 +0800 Subject: [PATCH] chore: fix path --- .github/workflows/update-dependencies.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-dependencies.yaml b/.github/workflows/update-dependencies.yaml index f88666d9..a0344b3e 100644 --- a/.github/workflows/update-dependencies.yaml +++ b/.github/workflows/update-dependencies.yaml @@ -41,12 +41,12 @@ jobs: - name: Update Foss Gomod run: | - cd ./core/src/foss/golang/ + cd ${{ github.workspace }}/core/src/foss/golang/ go get -u - name: Update Main Gomod run: | - cd ./core/src/main/golang/ + cd ${{ github.workspace }}/core/src/main/golang/ go get -u - name: Create Pull Request