File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
3+ name : Go Mod Cache
4+
5+ on :
6+ push :
7+ branches :
8+ - main
9+ paths :
10+ - go.mod
11+ - go.sum
12+ schedule :
13+ - cron : 0 0 * * 0
14+ workflow_dispatch :
15+
16+ jobs :
17+ go-cache :
18+ name : Go Module Cache
19+ runs-on : ubuntu-latest
20+ steps :
21+ - name : Checkout
22+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
23+ with :
24+ persist-credentials : false
25+
26+ - name : Setup Go
27+ uses : actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
28+ with :
29+ go-version-file : go.mod
30+
31+ - name : Download Go Modules
32+ run : go mod download
Original file line number Diff line number Diff line change 11module github.com/home-operations/containers
22
3- go 1.25.1
3+ go 1.26.2
44
55require (
66 github.com/docker/go-connections v0.6.0
You can’t perform that action at this time.
0 commit comments