Skip to content

Update import path of local goformation fork, fixing go mod verify #986

Update import path of local goformation fork, fixing go mod verify

Update import path of local goformation fork, fixing go mod verify #986

name: Cache Dependencies
on:
push:
branches:
- main
jobs:
cache-dependencies:
name: Cache dependencies
runs-on: ubuntu-latest
steps:
- name: Cache Go modules
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 #v4.2.0
with:
path: |
~/.cache/go-build/
~/go/pkg/mod/
key: go-${{ hashFiles('go.sum') }}
restore-keys: |
go-