this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Upgrade from actions/setup-go@v3 to actions/setup-go@v4 (#250)

Small version bump to use the setup-go@v4 action, which has built-in
caching:
https://github.blog/changelog/2023-03-24-github-actions-the-setup-go-action-now-enables-caching-by-default/

This shaved off 2 minutes in back-to-back runs while testing this.


https://github.com/jcsalterego/indigo/actions/runs/5662793038/attempts/1
- v3

https://github.com/jcsalterego/indigo/actions/runs/5662793038/attempts/2
- v4

authored by

Jaz and committed by
GitHub
489d722d 0e32ab1f

+2 -2
+2 -2
.github/workflows/golang.yml
··· 17 17 - name: Git Checkout 18 18 uses: actions/checkout@v3 19 19 - name: Set up Go tooling 20 - uses: actions/setup-go@v3 20 + uses: actions/setup-go@v4 21 21 with: 22 22 go-version: "1.20" 23 23 - name: Build ··· 30 30 - name: Git Checkout 31 31 uses: actions/checkout@v3 32 32 - name: Set up Go tooling 33 - uses: actions/setup-go@v3 33 + uses: actions/setup-go@v4 34 34 with: 35 35 go-version: "1.20" 36 36 - name: Lint