We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9976a3 commit 8f0f113Copy full SHA for 8f0f113
.github/workflows/build.yml
@@ -18,7 +18,17 @@ jobs:
18
- name: Set up Golang
19
uses: actions/setup-go@v5
20
with:
21
- go-version: '1.23'
+ go-version: '1.23'
22
+
23
+ - name: Install etcd
24
+ if: runner.os == 'Linux'
25
+ run: |
26
+ curl -L https://github.com/etcd-io/etcd/releases/download/v3.5.18/etcd-v3.5.18-linux-amd64.tar.gz -o etcd.tar.gz
27
+ tar xzvf etcd.tar.gz
28
+ sudo mv etcd/etcd /usr/local/bin/
29
+ sudo mv etcd/etcdctl /usr/local/bin/
30
+ etcd --version
31
+ sudo apt install -y etcd ncat
32
33
- name: Get dependencies
34
run: |
@@ -34,12 +44,6 @@ jobs:
44
version: latest
35
45
args: --verbose
36
46
37
- - uses: awalsh128/cache-apt-pkgs-action@latest
38
- if: runner.os == 'Linux'
39
- with:
40
- packages: etcd ncat
41
- version: 1.0
42
-
43
47
- name: Test E2E
48
if: runner.os == 'Linux'
49
0 commit comments