From 20883182684ee06c51335e10b5bce7d69f7660b0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 11 Apr 2024 13:18:51 +0200 Subject: [PATCH] chore(deps): update golang docker tag to v1.22.2 (#139) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang | stage | patch | `1.22.1` -> `1.22.2` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/aenix-io/etcd-operator). --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Hidden Marten --- .github/workflows/make-test-e2e.yaml | 2 +- .github/workflows/make-test.yaml | 2 +- .github/workflows/pre-commit.yaml | 2 +- Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/make-test-e2e.yaml b/.github/workflows/make-test-e2e.yaml index 9621b427..46615a03 100644 --- a/.github/workflows/make-test-e2e.yaml +++ b/.github/workflows/make-test-e2e.yaml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4.1.1 - uses: actions/setup-go@v5.0.0 with: - go-version: 1.22.1 + go-version: 1.22.2 - uses: helm/kind-action@v1.9.0 with: cluster_name: kind diff --git a/.github/workflows/make-test.yaml b/.github/workflows/make-test.yaml index 7e06b424..62e3c5f0 100644 --- a/.github/workflows/make-test.yaml +++ b/.github/workflows/make-test.yaml @@ -19,5 +19,5 @@ jobs: - uses: actions/checkout@v4.1.1 - uses: actions/setup-go@v5.0.0 with: - go-version: 1.22.1 + go-version: 1.22.2 - run: ENVTEST_K8S_VERSION=${{ matrix.k8s_version }} make test diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index 9d9a6167..75d03de6 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -10,5 +10,5 @@ jobs: - uses: actions/checkout@v4.1.1 - uses: actions/setup-go@v5.0.0 with: - go-version: 1.22.1 + go-version: 1.22.2 - uses: pre-commit/action@v3.0.1 diff --git a/Dockerfile b/Dockerfile index 1c8c1c41..ce6e3f30 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.22.1 AS builder +FROM golang:1.22.2 AS builder ARG TARGETOS TARGETARCH WORKDIR /workspace