diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ba20e90a..47e9ac3b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -49,7 +49,6 @@ jobs: make lint build-container: runs-on: ubuntu-latest - needs: [lint, test] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/Dockerfile b/Dockerfile index 7ea5ea14..3ccb7eb4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,6 @@ RUN make build FROM debian:testing-slim -COPY --from=builder /build/bin/sidecar /build/bin/sidecar +COPY --from=builder /build/bin/sidecar /usr/local/bin/sidecar ENTRYPOINT ["/usr/local/bin/sidecar"] diff --git a/charts/sidecar/Chart.yaml b/charts/sidecar/Chart.yaml index 94284e1a..e2cd9dff 100644 --- a/charts/sidecar/Chart.yaml +++ b/charts/sidecar/Chart.yaml @@ -4,6 +4,6 @@ description: A Helm chart for the EigenLayer sidecar type: application -version: 0.1.0-beta.3 +version: 0.1.0-beta.4 -appVersion: "v1.0.0-beta.3" +appVersion: "v1.0.0-beta.4" diff --git a/charts/sidecar/values.yaml b/charts/sidecar/values.yaml index 3308b605..89a7a34a 100644 --- a/charts/sidecar/values.yaml +++ b/charts/sidecar/values.yaml @@ -1,7 +1,7 @@ image: repository: public.ecr.aws/z6g0f8n7/sidecar pullPolicy: Always - tag: "v1.0.0-beta.1" + tag: "v1.0.0-beta.4" sidecar: replicas: 1 diff --git a/scripts/installDeps.sh b/scripts/installDeps.sh index d7ce920c..7824bc7e 100755 --- a/scripts/installDeps.sh +++ b/scripts/installDeps.sh @@ -27,7 +27,7 @@ if [[ "$OS" == "linux" ]]; then which go if [[ $? != 0 ]]; then - echo "Installing Go 1.22" + echo "Installing Go 1.23" apt-get install -y golang fi fi