pre-Generate EC2 instance type details out of band (#8206) #1019
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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- |