diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 39cbc9e..25eceaa 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -5,8 +5,8 @@ on: env: GOPROXY: https://goproxy.io,direct - GOPATH: /go_path - GOCACHE: /go_cache + GOPATH: go_path + GOCACHE: go_cache jobs: lint: @@ -17,7 +17,7 @@ jobs: id: cache-go-path uses: https://github.com/actions/cache@v3 with: - path: /go_path + path: go_path key: go_path-${{ github.repository }}-${{ github.ref_name }} restore-keys: | go_path-${{ github.repository }}- @@ -26,7 +26,7 @@ jobs: id: cache-go-cache uses: https://github.com/actions/cache@v3 with: - path: /go_cache + path: go_cache key: go_cache-${{ github.repository }}-${{ github.ref_name }} restore-keys: | go_cache-${{ github.repository }}-