From 4c6498d7264ded80b290a76ab757320b6648b734 Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Mon, 25 Jul 2022 15:27:20 -0700 Subject: [PATCH] move all CI/CD to go1.18 (#15401) --- .github/workflows/go-cross.yml | 2 +- .github/workflows/go-healing.yml | 2 +- .github/workflows/go-lint.yml | 2 +- .github/workflows/go.yml | 2 +- .github/workflows/iam-integrations.yaml | 2 +- .github/workflows/replication.yaml | 2 +- .github/workflows/upgrade-ci-cd.yaml | 2 +- README.md | 2 +- go.mod | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/go-cross.yml b/.github/workflows/go-cross.yml index 0528aa889..ef3d39bad 100644 --- a/.github/workflows/go-cross.yml +++ b/.github/workflows/go-cross.yml @@ -20,7 +20,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.17.x, 1.18.x] + go-version: [1.18.x] os: [ubuntu-latest] steps: - uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2 diff --git a/.github/workflows/go-healing.yml b/.github/workflows/go-healing.yml index 9dbfaaa3d..1ae485bd1 100644 --- a/.github/workflows/go-healing.yml +++ b/.github/workflows/go-healing.yml @@ -20,7 +20,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.17.x] + go-version: [1.18.x] os: [ubuntu-latest] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/go-lint.yml b/.github/workflows/go-lint.yml index 22629a5b2..6aff20b82 100644 --- a/.github/workflows/go-lint.yml +++ b/.github/workflows/go-lint.yml @@ -20,7 +20,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.17.x, 1.18.x] + go-version: [1.18.x] os: [ubuntu-latest, windows-latest] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 65fc52493..d37e2dc4b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -20,7 +20,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.17.x, 1.18.x] + go-version: [1.18.x] os: [ubuntu-latest] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/iam-integrations.yaml b/.github/workflows/iam-integrations.yaml index c642959f4..87e32cd7b 100644 --- a/.github/workflows/iam-integrations.yaml +++ b/.github/workflows/iam-integrations.yaml @@ -61,7 +61,7 @@ jobs: # are turned off - i.e. if ldap="", then ldap server is not enabled for # the tests. matrix: - go-version: [1.17.x] + go-version: [1.18.x] ldap: ["", "localhost:389"] etcd: ["", "http://localhost:2379"] openid: ["", "http://127.0.0.1:5556/dex"] diff --git a/.github/workflows/replication.yaml b/.github/workflows/replication.yaml index 69cc04485..79227d3f2 100644 --- a/.github/workflows/replication.yaml +++ b/.github/workflows/replication.yaml @@ -21,7 +21,7 @@ jobs: strategy: matrix: - go-version: [1.17.x] + go-version: [1.18.x] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/upgrade-ci-cd.yaml b/.github/workflows/upgrade-ci-cd.yaml index 048a417a9..eee542adf 100644 --- a/.github/workflows/upgrade-ci-cd.yaml +++ b/.github/workflows/upgrade-ci-cd.yaml @@ -20,7 +20,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.17.x] + go-version: [1.18.x] os: [ubuntu-latest] steps: diff --git a/README.md b/README.md index 14cab4e61..84fc987c7 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ You can also connect using any S3-compatible tool, such as the MinIO Client `mc` ## Install from Source -Use the following commands to compile and run a standalone MinIO server from source. Source installation is only intended for developers and advanced users. If you do not have a working Golang environment, please follow [How to install Golang](https://golang.org/doc/install). Minimum version required is [go1.17](https://golang.org/dl/#stable) +Use the following commands to compile and run a standalone MinIO server from source. Source installation is only intended for developers and advanced users. If you do not have a working Golang environment, please follow [How to install Golang](https://golang.org/doc/install). Minimum version required is [go1.18](https://golang.org/dl/#stable) ```sh GO111MODULE=on go install github.com/minio/minio@latest diff --git a/go.mod b/go.mod index e6629a09f..8c23b6778 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/minio/minio -go 1.17 +go 1.18 require ( cloud.google.com/go/storage v1.10.0