Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

etcd: update to 3.5.10 #1263

Merged
merged 1 commit into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- 17
- 21
etcd:
- gcr.io/etcd-development/etcd:v3.5.9
- gcr.io/etcd-development/etcd:v3.5.10
- gcr.io/etcd-development/etcd:v3.4.27
uses: ./.github/workflows/build.yml
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- 17
- 21
etcd:
- gcr.io/etcd-development/etcd:v3.5.9
- gcr.io/etcd-development/etcd:v3.5.10
- gcr.io/etcd-development/etcd:v3.4.27
uses: ./.github/workflows/build.yml
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import com.google.common.base.Strings;

public final class Etcd {
public static final String CONTAINER_IMAGE = "gcr.io/etcd-development/etcd:v3.5.9";
public static final String CONTAINER_IMAGE = "gcr.io/etcd-development/etcd:v3.5.10";
public static final int ETCD_CLIENT_PORT = 2379;
public static final int ETCD_PEER_PORT = 2380;
public static final String ETCD_DATA_DIR = "/data.etcd";
Expand Down