Skip to content

Commit 68465e3

Browse files
committed
replace cache with direct package install
1 parent f9976a3 commit 68465e3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ jobs:
1818
- name: Set up Golang
1919
uses: actions/setup-go@v5
2020
with:
21-
go-version: '1.23'
21+
go-version: '1.23'
22+
23+
- name: Install etcd
24+
if: runner.os == 'Linux'
25+
run: |
26+
sudo apt update
27+
sudo apt install -y etcd ncat
2228
2329
- name: Get dependencies
2430
run: |
@@ -34,12 +40,6 @@ jobs:
3440
version: latest
3541
args: --verbose
3642

37-
- uses: awalsh128/cache-apt-pkgs-action@latest
38-
if: runner.os == 'Linux'
39-
with:
40-
packages: etcd ncat
41-
version: 1.0
42-
4343
- name: Test E2E
4444
if: runner.os == 'Linux'
4545
run: |

0 commit comments

Comments
 (0)