Skip to content

Commit 426d2d7

Browse files
author
lmvysakh
committed
Updated workflow file
1 parent 1e9da2a commit 426d2d7

File tree

4 files changed

+2902
-21
lines changed

4 files changed

+2902
-21
lines changed

.github/workflows/hugecachedpendencyv5.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v5
1313

14+
- name: Setup Go with cache
15+
uses: actions/setup-go@v5
16+
with:
17+
go-version: '1.24'
18+
cache: true
19+
cache-dependency-path: bigcachetest/go.sum
20+
1421
- name: Create large go.mod & go.sum in test directory
1522
working-directory: bigcachetest
1623
run: |
@@ -55,13 +62,6 @@ jobs:
5562
EOF
5663
go mod tidy
5764
58-
- name: Setup Go with cache
59-
uses: actions/setup-go@v5
60-
with:
61-
go-version: '1.24'
62-
cache: true
63-
cache-dependency-path: bigcachetest/go.sum
64-
6565
- name: Download dependencies
6666
working-directory: bigcachetest
6767
run: go mod download
@@ -74,6 +74,13 @@ jobs:
7474
steps:
7575
- uses: actions/checkout@v5
7676

77+
- name: Setup Go with cache
78+
uses: actions/setup-go@v5
79+
with:
80+
go-version: '1.24'
81+
cache: true
82+
cache-dependency-path: bigcachetest/go.sum
83+
7784
- name: Create large go.mod & go.sum in test directory
7885
working-directory: bigcachetest
7986
run: |
@@ -118,13 +125,6 @@ jobs:
118125
EOF
119126
go mod tidy
120127
121-
- name: Setup Go with cache
122-
uses: actions/setup-go@v5
123-
with:
124-
go-version: '1.24'
125-
cache: true
126-
cache-dependency-path: bigcachetest/go.sum
127-
128128
- name: Download dependencies
129129
working-directory: bigcachetest
130130
run: go mod download
@@ -137,6 +137,13 @@ jobs:
137137
steps:
138138
- uses: actions/checkout@v5
139139

140+
- name: Setup Go with cache
141+
uses: actions/setup-go@v5
142+
with:
143+
go-version: '1.24'
144+
cache: true
145+
cache-dependency-path: bigcachetest/go.sum
146+
140147
- name: Create large go.mod & go.sum in test directory
141148
working-directory: bigcachetest
142149
run: |
@@ -182,13 +189,6 @@ jobs:
182189
Set-Content -Path go.mod -Value $goMod
183190
go mod tidy
184191
185-
- name: Setup Go with cache
186-
uses: actions/setup-go@v5
187-
with:
188-
go-version: '1.24'
189-
cache: true
190-
cache-dependency-path: bigcachetest/go.sum
191-
192192
- name: Download dependencies
193193
working-directory: bigcachetest
194194
run: go mod download

bigcachetest/go.mod

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
module example.com/bigcachetest
2+
3+
go 1.24
4+
5+
require (
6+
github.com/aws/aws-sdk-go-v2 v1.29.0
7+
cloud.google.com/go v0.110.0
8+
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.1.0
9+
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute v1.2.0
10+
github.com/lib/pq v1.10.9
11+
github.com/go-sql-driver/mysql v1.7.0
12+
github.com/golang/protobuf v1.5.3
13+
google.golang.org/grpc v1.60.0
14+
github.com/Shopify/sarama v1.40.0
15+
github.com/elastic/go-elasticsearch/v8 v8.10.0
16+
github.com/hashicorp/terraform v1.6.2
17+
github.com/uber-go/zap v1.24.0
18+
github.com/prometheus/client_golang v1.16.0
19+
github.com/gin-gonic/gin v1.9.0
20+
github.com/go-redis/redis/v8 v8.11.5
21+
github.com/gorilla/websocket v1.5.0
22+
github.com/sirupsen/logrus v1.9.3
23+
github.com/spf13/cobra v1.8.0
24+
github.com/spf13/viper v1.18.2
25+
go.mongodb.org/mongo-driver v1.13.1
26+
github.com/google/uuid v1.6.0
27+
github.com/minio/minio-go/v7 v7.0.28
28+
github.com/docker/docker/client v1.13.0
29+
github.com/kubernetes/client-go v0.29.0
30+
github.com/coreos/etcd/clientv3 v1.5.10
31+
github.com/apache/thrift v0.19.0
32+
github.com/apache/arrow/go/v13 v13.0.0
33+
github.com/nats-io/nats.go v1.22.1
34+
github.com/segmentio/kafka-go v0.4.30
35+
github.com/googleapis/gax-go/v2 v2.7.0
36+
github.com/gocql/gocql v1.5.0
37+
)

0 commit comments

Comments
 (0)