Skip to content

Commit 3532af0

Browse files
committed
ci-workflow: perform apt update before apt install
Generally this isn't needed as GitHub CI runners update periodically, but may help recover from temporary mirror sync flakes.
1 parent fb513d4 commit 3532af0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
docker login --username ${{ github.actor }} --password-stdin ghcr.io
2323
2424
- uses: actions/setup-go@v4
25-
- run: sudo apt install -y protobuf-compiler librocksdb-dev libsqlite3-dev etcd-server
25+
- run: sudo apt update && sudo apt install -y protobuf-compiler librocksdb-dev libsqlite3-dev etcd-server
2626
- run: echo "VERSION=$(git describe --dirty --tags)" >> "$GITHUB_ENV"
2727

2828
- run: make go-test-ci

0 commit comments

Comments
 (0)