I think we should not use caret when setting up the environment in CI to avoid compatible issues between deps.
Currently:
- name: Set up Go 1.16
uses: actions/setup-go@v2
with:
go-version: ^1.16
id: go
- name: Set up Nodejs 14
uses: actions/setup-node@v2
with:
node-version: ^14.15
id: node
I think we should not use caret when setting up the environment in CI to avoid compatible issues between deps.
Currently:
CI will use Go 1.20.5 and Node 14.21.3