diff --git a/.github/workflows/pre-main.yml b/.github/workflows/pre-main.yml index 0590c60c5..f5887f1eb 100644 --- a/.github/workflows/pre-main.yml +++ b/.github/workflows/pre-main.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v4 with: - go-version: 1.21.3 + go-version: 1.21.4 - uses: nosborn/github-action-markdown-cli@v3.3.0 with: @@ -57,7 +57,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v4 with: - go-version: 1.21.3 + go-version: 1.21.4 - name: Install ginkgo run: make install-ginkgo @@ -76,7 +76,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v4 with: - go-version: 1.21.3 + go-version: 1.21.4 - name: Checkout the cnf-certification-test repo uses: actions/checkout@v4 diff --git a/.github/workflows/qe-nightly.yml b/.github/workflows/qe-nightly.yml index c68889b2a..3681aaf9e 100644 --- a/.github/workflows/qe-nightly.yml +++ b/.github/workflows/qe-nightly.yml @@ -49,7 +49,7 @@ jobs: - name: Set up Go 1.21 uses: actions/setup-go@v4 with: - go-version: 1.21.3 + go-version: 1.21.4 - name: Disable default go problem matcher run: echo "::remove-matcher owner=go::" diff --git a/go.mod b/go.mod index 486da95c1..890f05229 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/test-network-function/cnfcert-tests-verification -go 1.21.3 +go 1.21.4 require ( github.com/golang/glog v1.1.2 diff --git a/scripts/install-latest-go.sh b/scripts/install-latest-go.sh index ec6fe1167..636970b79 100755 --- a/scripts/install-latest-go.sh +++ b/scripts/install-latest-go.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -REQUIRED_GO_VERSION=1.21.3 +REQUIRED_GO_VERSION=1.21.4 INSTALLED_GO_VERSION="$( go version | { read -r _ _ v _