From 5648b5702ae30fa295f231eb1684f2f5f37127f6 Mon Sep 17 00:00:00 2001 From: Zbynek Roubalik Date: Sun, 14 Jan 2024 00:50:23 +0100 Subject: [PATCH] chore: bump Go to 1.21.6 (#5370) Signed-off-by: Zbynek Roubalik --- .github/workflows/main-build.yml | 2 +- .github/workflows/pr-e2e.yml | 4 ++-- .github/workflows/pr-validation.yml | 6 +++--- .github/workflows/release-build.yml | 2 +- .github/workflows/static-analysis-codeql.yml | 2 +- .github/workflows/template-main-e2e-test.yml | 2 +- Dockerfile | 2 +- Dockerfile.adapter | 2 +- Dockerfile.webhooks | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/main-build.yml b/.github/workflows/main-build.yml index 1ab5c58eb56..e68bd588cb2 100644 --- a/.github/workflows/main-build.yml +++ b/.github/workflows/main-build.yml @@ -13,7 +13,7 @@ jobs: id-token: write # needed for signing the images with GitHub OIDC Token **not production ready** # keda-tools is built from github.com/test-tools/tools/Dockerfile - container: ghcr.io/kedacore/keda-tools:1.21.5 + container: ghcr.io/kedacore/keda-tools:1.21.6 steps: - name: Check out code uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 diff --git a/.github/workflows/pr-e2e.yml b/.github/workflows/pr-e2e.yml index 0b300c269e6..0926f8b4c0a 100644 --- a/.github/workflows/pr-e2e.yml +++ b/.github/workflows/pr-e2e.yml @@ -68,7 +68,7 @@ jobs: needs: triage runs-on: ubuntu-latest name: Build images - container: ghcr.io/kedacore/keda-tools:1.21.5 + container: ghcr.io/kedacore/keda-tools:1.21.6 if: needs.triage.outputs.run-e2e == 'true' steps: - name: Set status in-progress @@ -112,7 +112,7 @@ jobs: needs: [triage, build-test-images] runs-on: e2e name: Execute e2e tests - container: ghcr.io/kedacore/keda-tools:1.21.5 + container: ghcr.io/kedacore/keda-tools:1.21.6 if: needs.triage.outputs.run-e2e == 'true' steps: - name: Set status in-progress diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index 503295c3872..73dbc79ae4d 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -10,7 +10,7 @@ jobs: validate: name: validate - ${{ matrix.name }} runs-on: ${{ matrix.runner }} - container: ghcr.io/kedacore/keda-tools:1.21.5 + container: ghcr.io/kedacore/keda-tools:1.21.6 strategy: matrix: include: @@ -73,7 +73,7 @@ jobs: validate-dockerfiles: name: validate-dockerfiles - ${{ matrix.name }} runs-on: ${{ matrix.runner }} - container: ghcr.io/kedacore/keda-tools:1.21.5 + container: ghcr.io/kedacore/keda-tools:1.21.6 strategy: matrix: include: @@ -104,7 +104,7 @@ jobs: validate-dev-container: name: Validate dev-container - ${{ matrix.name }} runs-on: ${{ matrix.runner }} - container: ghcr.io/kedacore/keda-tools:1.21.5 + container: ghcr.io/kedacore/keda-tools:1.21.6 strategy: matrix: include: diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 19f304d20f5..4d144cf69c2 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -13,7 +13,7 @@ jobs: id-token: write # needed for signing the images with GitHub OIDC Token **not production ready** # keda-tools is built from github.com/test-tools/tools/Dockerfile - container: ghcr.io/kedacore/keda-tools:1.21.5 + container: ghcr.io/kedacore/keda-tools:1.21.6 steps: - name: Check out code uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 diff --git a/.github/workflows/static-analysis-codeql.yml b/.github/workflows/static-analysis-codeql.yml index 5e83cbf8226..3da1a8bdc11 100644 --- a/.github/workflows/static-analysis-codeql.yml +++ b/.github/workflows/static-analysis-codeql.yml @@ -13,7 +13,7 @@ jobs: codeQl: name: Analyze CodeQL Go runs-on: ubuntu-latest - container: ghcr.io/kedacore/keda-tools:1.21.5 + container: ghcr.io/kedacore/keda-tools:1.21.6 if: (github.actor != 'dependabot[bot]') steps: - name: Checkout repository diff --git a/.github/workflows/template-main-e2e-test.yml b/.github/workflows/template-main-e2e-test.yml index 397f626cb71..12f72a68035 100644 --- a/.github/workflows/template-main-e2e-test.yml +++ b/.github/workflows/template-main-e2e-test.yml @@ -8,7 +8,7 @@ jobs: name: Run e2e test runs-on: ARM64 # keda-tools is built from github.com/test-tools/tools/Dockerfile - container: ghcr.io/kedacore/keda-tools:1.21.5 + container: ghcr.io/kedacore/keda-tools:1.21.6 concurrency: e2e-tests steps: - name: Check out code diff --git a/Dockerfile b/Dockerfile index d1cdf69f522..6d7bbf41be1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM --platform=$BUILDPLATFORM ghcr.io/kedacore/keda-tools:1.21.5 AS builder +FROM --platform=$BUILDPLATFORM ghcr.io/kedacore/keda-tools:1.21.6 AS builder ARG BUILD_VERSION=main ARG GIT_COMMIT=HEAD diff --git a/Dockerfile.adapter b/Dockerfile.adapter index 05fe3c6de3e..c1269995216 100644 --- a/Dockerfile.adapter +++ b/Dockerfile.adapter @@ -1,5 +1,5 @@ # Build the adapter binary -FROM --platform=$BUILDPLATFORM ghcr.io/kedacore/keda-tools:1.21.5 AS builder +FROM --platform=$BUILDPLATFORM ghcr.io/kedacore/keda-tools:1.21.6 AS builder ARG BUILD_VERSION=main ARG GIT_COMMIT=HEAD diff --git a/Dockerfile.webhooks b/Dockerfile.webhooks index a982075b033..81155abef15 100644 --- a/Dockerfile.webhooks +++ b/Dockerfile.webhooks @@ -1,5 +1,5 @@ # Build the manager binary -FROM --platform=$BUILDPLATFORM ghcr.io/kedacore/keda-tools:1.21.5 AS builder +FROM --platform=$BUILDPLATFORM ghcr.io/kedacore/keda-tools:1.21.6 AS builder ARG BUILD_VERSION=main ARG GIT_COMMIT=HEAD