We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01e7ed7 commit c066864Copy full SHA for c066864
.github/workflows/lifecycleTests.yml
@@ -55,6 +55,17 @@ jobs:
55
if: matrix.os.name != 'macos'
56
uses: jfrog/.github/actions/install-go-with-cache@main
57
58
+ - name: Force fresh module download
59
+ if: matrix.os.name != 'macos'
60
+ run: |
61
+ echo "=== Current jfrog-client-go in go.mod ==="
62
+ grep jfrog-client-go go.mod
63
+ echo "=== Clearing module cache and downloading fresh ==="
64
+ go clean -modcache
65
+ go mod download
66
+ echo "=== Resolved jfrog-client-go version ==="
67
+ go list -m github.com/jfrog/jfrog-client-go
68
+
69
- name: Debug macOS Environment and Set Timeout
70
if: runner.os == 'macOS'
71
run: |
0 commit comments