From 0042664adaef5dabdc59d3414e57b293f0705ac6 Mon Sep 17 00:00:00 2001 From: Paul Meyer <49727155+katexochen@users.noreply.github.com> Date: Wed, 12 Jul 2023 09:51:40 +0200 Subject: [PATCH] deps: update to Go v1.20.6 (#2093) Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> --- .github/workflows/azure-snp-reporter.yml | 2 +- .github/workflows/build-os-image-scheduled.yml | 2 +- .github/workflows/build-os-image.yml | 4 ++-- .github/workflows/codeql.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test-integration.yml | 2 +- .github/workflows/test-operator-codegen.yml | 2 +- 3rdparty/gcp-guest-agent/Dockerfile | 2 +- WORKSPACE.bazel | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/azure-snp-reporter.yml b/.github/workflows/azure-snp-reporter.yml index e4f307ac1..504bae890 100644 --- a/.github/workflows/azure-snp-reporter.yml +++ b/.github/workflows/azure-snp-reporter.yml @@ -65,7 +65,7 @@ jobs: - name: Set up Go uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1 with: - go-version: 1.20.5 + go-version: "1.20.6" cache: false - name: Download report JWT diff --git a/.github/workflows/build-os-image-scheduled.yml b/.github/workflows/build-os-image-scheduled.yml index 3536e881f..3e316cc59 100644 --- a/.github/workflows/build-os-image-scheduled.yml +++ b/.github/workflows/build-os-image-scheduled.yml @@ -69,7 +69,7 @@ jobs: - name: Setup Go environment uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1 with: - go-version: "1.20.5" + go-version: "1.20.6" cache: false - name: Determine version diff --git a/.github/workflows/build-os-image.yml b/.github/workflows/build-os-image.yml index 0ae07e6d5..8b5a5822c 100644 --- a/.github/workflows/build-os-image.yml +++ b/.github/workflows/build-os-image.yml @@ -65,7 +65,7 @@ jobs: - name: Setup Go environment uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1 with: - go-version: "1.20.5" + go-version: "1.20.6" cache: true - name: Setup bazel @@ -951,7 +951,7 @@ jobs: - name: Setup Go environment uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1 with: - go-version: "1.20.5" + go-version: "1.20.6" cache: true - name: Create CLI compatibility information artifact diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 778bc80b0..3f65c7de8 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -40,7 +40,7 @@ jobs: if: matrix.language == 'go' uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1 with: - go-version: "1.20.5" + go-version: "1.20.6" cache: false - name: Initialize CodeQL diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9426e5395..71a98fac4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -212,7 +212,7 @@ jobs: - name: Setup Go environment uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1 with: - go-version: "1.20.5" + go-version: "1.20.6" cache: true - name: Build generateMeasurements tool diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 267bca0e9..0eff22dbd 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -32,7 +32,7 @@ jobs: - name: Setup Go environment uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1 with: - go-version: "1.20.5" + go-version: "1.20.6" cache: true - name: Install Dependencies diff --git a/.github/workflows/test-operator-codegen.yml b/.github/workflows/test-operator-codegen.yml index a58870c56..43378976d 100644 --- a/.github/workflows/test-operator-codegen.yml +++ b/.github/workflows/test-operator-codegen.yml @@ -28,7 +28,7 @@ jobs: - name: Setup Go environment uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1 with: - go-version: "1.20.5" + go-version: "1.20.6" cache: true - name: Run code generation diff --git a/3rdparty/gcp-guest-agent/Dockerfile b/3rdparty/gcp-guest-agent/Dockerfile index 79ab2195f..5bfee35ce 100644 --- a/3rdparty/gcp-guest-agent/Dockerfile +++ b/3rdparty/gcp-guest-agent/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y \ git # Install Go -ARG GO_VER=1.20.5 +ARG GO_VER=1.20.6 RUN wget -q https://go.dev/dl/go${GO_VER}.linux-amd64.tar.gz && \ tar -C /usr/local -xzf go${GO_VER}.linux-amd64.tar.gz && \ rm go${GO_VER}.linux-amd64.tar.gz diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel index 2c1b09e15..f83644a7d 100644 --- a/WORKSPACE.bazel +++ b/WORKSPACE.bazel @@ -26,7 +26,7 @@ go_dependencies() go_rules_dependencies() -go_register_toolchains(version = "1.20.5") +go_register_toolchains(version = "1.20.6") gazelle_dependencies(go_repository_default_config = "//:WORKSPACE.bazel")