fix: Move V installation out of current working directory#10
fix: Move V installation out of current working directory#10JalonSolov merged 6 commits intovlang:mainfrom
Conversation
|
The CI is loading a positively "ancient" version of V, so that is likely the cause of the failure. The CI is also only using node 20, rather than something later... no idea if that's a problem or not. Also, did you bump the version in your changes? |
|
Hey @JalonSolov
I bumped it to the latest stable version "0.5". Hopefully that fixes it. 🤞
That shouldn't cause any issues. I'll create a separate PR to update the node version. 👍 We should use the latest Node LTS version (Node v24).
We don't need to bump it. Just create/republish the major tag. Since these changes are backwards compatible, I recommend updating the v1 tag (common practice in GitHub Actions). No need for minor tags like v1.1, v1.2, etc. |
|
V Personally, I'd rather just use |
We can't use
Users of this action won't get an "ancient" version of V. That only affects the workflow in this repo because the version was hardcoded to an older version. (This repo hasn't been updated in 2 years) Here's the scenarios If the - name: Setup V
uses: vlang/setup-v@v1.4Setting - name: Setup V
uses: vlang/setup-v@v1.4
with:
check-latest: trueSetting - name: Setup V
uses: vlang/setup-v@v1.4
with:
stable: trueSetting - name: Setup V
uses: vlang/setup-v@v1.4
with:
check-latest: true
stable: trueSetting explicit - name: Setup V
uses: vlang/setup-v@v1.4
with:
version: weekly.2026.08Uses v version The action seems to be working correctly. |
Notable changes
npm ci)use-latest-stablejobFixes #9, #7, #6
Before
After