diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b184c8025..1e314f25c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,7 +1,7 @@ name: Build, Test, Lint License env: - GO_VERSION: "1.20.2" + GO_VERSION: "1.20.3" on: push: diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index c95a2de61..5f40bc8ff 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/setup-go@v4 with: - go-version: '1.20.2' + go-version: '1.20.3' - uses: actions/checkout@v3 - name: golangci-lint uses: golangci/golangci-lint-action@v3 diff --git a/integration/Jenkinsfile b/integration/Jenkinsfile index 95bb9677d..b7268218e 100644 --- a/integration/Jenkinsfile +++ b/integration/Jenkinsfile @@ -17,7 +17,8 @@ pipeline { } environment { BUILD_ID="dontKillMe" - JENKINS_NODE_COOKIE="dontKillMe" + JENKINS_NODE_COOKIE="dontKillMe" + GO_VERSION = "1.20.3" } stages { @@ -207,7 +208,7 @@ def void stopAndRemoveDockers() { def void setupWorkspace() { sh ''' - wget --quiet -O go.tar.gz "https://go.dev/dl/go1.20.1.linux-amd64.tar.gz" + wget --quiet -O go.tar.gz "https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz" rm -rf /usr/local/go && tar -C /usr/local -xzf ./go.tar.gz git clone --single-branch --branch $BRANCH https://github.com/NetApp/harvest.git cp /u/mpeg/harvest/harvest_cert.yml $WORKSPACE/harvest/integration/test/ diff --git a/jenkins/artifacts/jenkinsfile b/jenkins/artifacts/jenkinsfile index eeca4933c..7b37c30ed 100644 --- a/jenkins/artifacts/jenkinsfile +++ b/jenkins/artifacts/jenkinsfile @@ -37,7 +37,7 @@ pipeline { jfrogImagePrefix = "netappdownloads.jfrog.io/oss-docker-harvest-production/harvest" jfrogRepo = "netappdownloads.jfrog.io" COMMIT_ID = sh(returnStdout: true, script: 'git rev-parse HEAD') - GO_VERSION = 1.20 + GO_VERSION = "1.20.3" } stages {