Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Python version warnings and go cache warnings in github actions. Closes #1346. On the go cache warning: By default [the cache is enabled](https://github.com/actions/setup-go/blob/main/action.yml#L15), but in our case, since we only need go to install Pebble and there is no `go.sum` file, there is no need for the cache, see the logic [in the code here](https://github.com/actions/setup-go/blob/main/src/main.ts#L67-L79). So I am disabling the cache explicitly, which should not make the actions run slower but should suppress the warnings. See a successful run [here](https://github.com/canonical/operator/actions/runs/11402361559) and there is no more warnings.
- Loading branch information