From e7db2fbd351737826c18165a37dc9620f0ec8ac1 Mon Sep 17 00:00:00 2001 From: Brandon Palm Date: Mon, 15 Jan 2024 13:50:17 -0600 Subject: [PATCH] Update Go to v1.21.6 --- .github/actions/setup/action.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/merge.yaml | 2 +- .github/workflows/pre-main.yaml | 8 ++++---- .github/workflows/preflight.yml | 2 +- .github/workflows/update-rhcos-mapping.yml | 2 +- Dockerfile | 2 +- go.mod | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index fdd8a0752..b5733a0af 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -16,7 +16,7 @@ runs: - name: Set up Go 1.21 uses: actions/setup-go@v4 with: - go-version: 1.21.5 + go-version: 1.21.6 cache: false - name: Disable default go problem matcher diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 83c3d5efd..b1e450649 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -45,7 +45,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v5 with: - go-version: 1.21.5 + go-version: 1.21.6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index df63ea946..e9ce3d0d5 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -24,7 +24,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v5 with: - go-version: 1.21.5 + go-version: 1.21.6 - name: Check out code into the Go module directory uses: actions/checkout@v4 diff --git a/.github/workflows/pre-main.yaml b/.github/workflows/pre-main.yaml index 6dd644a7f..4de3f5d59 100644 --- a/.github/workflows/pre-main.yaml +++ b/.github/workflows/pre-main.yaml @@ -41,7 +41,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v5 with: - go-version: 1.21.5 + go-version: 1.21.6 - name: Disable default go problem matcher run: echo "::remove-matcher owner=go::" @@ -113,7 +113,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v5 with: - go-version: 1.21.5 + go-version: 1.21.6 - name: Disable default go problem matcher run: echo "::remove-matcher owner=go::" @@ -179,7 +179,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v5 with: - go-version: 1.21.5 + go-version: 1.21.6 - name: Disable default go problem matcher run: echo "::remove-matcher owner=go::" @@ -353,7 +353,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v5 with: - go-version: 1.21.5 + go-version: 1.21.6 # Perform smoke tests using a TNF container. - name: Check out code into the Go module directory diff --git a/.github/workflows/preflight.yml b/.github/workflows/preflight.yml index c07d54671..c72150bf9 100644 --- a/.github/workflows/preflight.yml +++ b/.github/workflows/preflight.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v5 with: - go-version: 1.21.5 + go-version: 1.21.6 - name: Disable default go problem matcher run: echo "::remove-matcher owner=go::" diff --git a/.github/workflows/update-rhcos-mapping.yml b/.github/workflows/update-rhcos-mapping.yml index d8676ce88..fe85a998a 100644 --- a/.github/workflows/update-rhcos-mapping.yml +++ b/.github/workflows/update-rhcos-mapping.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v5 with: - go-version: 1.21.5 + go-version: 1.21.6 # This prevents any failures due to the updated rhcos_versions_map file from # making it into the PR phase. diff --git a/Dockerfile b/Dockerfile index ced8ac493..654d62da7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN \ # Install Go binary and set the PATH ENV \ GO_DL_URL=https://golang.org/dl \ - GO_BIN_TAR=go1.21.5.linux-amd64.tar.gz \ + GO_BIN_TAR=go1.21.6.linux-amd64.tar.gz \ GOPATH=/root/go ENV GO_BIN_URL_x86_64=${GO_DL_URL}/${GO_BIN_TAR} RUN \ diff --git a/go.mod b/go.mod index 1a72a7b5d..4c32651d2 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/test-network-function/cnf-certification-test -go 1.21.5 +go 1.21.6 require ( github.com/Masterminds/semver/v3 v3.2.1