diff --git a/.ci/Dockerfile b/.ci/Dockerfile index 843d85eee..d93bf0a8d 100644 --- a/.ci/Dockerfile +++ b/.ci/Dockerfile @@ -12,7 +12,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.19-alpine@sha256:0ec0646e208ea58e5d29e558e39f2e59fccf39b7bda306cb53bbaff91919eca5 AS builder +FROM golang:1.21-alpine@sha256:2a1959ca3c229c72fbbee9643b88ef23d7859a7d18b60a0d94ee3d2923b49316 AS builder # Allows for the proper yq to be downloaded # This arg is automatically set if the dockerfile is built with --platform flag diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5c388b16a..e19be4512 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,7 +21,7 @@ on: branches: [main] env: - GO_VERSION: 1.19 + GO_VERSION: 1.21 OAPI_CODEGEN_VERSION: v1.12.4 jobs: @@ -146,7 +146,7 @@ jobs: uses: manusa/actions-setup-minikube@3856c6fa039819f1c8e7e248b1fc5a8564e354c9 # v2.9.0 with: minikube version: 'v1.31.2' - kubernetes version: 'v1.21.0' + kubernetes version: 'v1.29.2' driver: 'docker' github token: ${{ secrets.GITHUB_TOKEN }} start args: '--addons=ingress --memory 4096 --cpus 2' diff --git a/.github/workflows/codecov.yaml b/.github/workflows/codecov.yaml index 2c377a7d6..c0a0c509c 100644 --- a/.github/workflows/codecov.yaml +++ b/.github/workflows/codecov.yaml @@ -28,7 +28,7 @@ jobs: - name: Set up Go 1.x uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 with: - go-version: 1.19 + go-version: 1.21 - name: Run tests run: cd index/server && go test ./... -coverprofile cover.out - name: Codecov diff --git a/.github/workflows/pushimage-next.yaml b/.github/workflows/pushimage-next.yaml index 38cb8c50b..29fda072e 100644 --- a/.github/workflows/pushimage-next.yaml +++ b/.github/workflows/pushimage-next.yaml @@ -30,7 +30,7 @@ jobs: - name: Setup Go environment uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 with: - go-version: 1.19 + go-version: 1.21 - name: Set up QEMU # Enables arm64 image building uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 #v3.0.0 - name: Login to Quay @@ -40,7 +40,7 @@ jobs: username: ${{ secrets.QUAY_USERNAME }} password: ${{ secrets.QUAY_PASSWORD }} - name: Build and push the index server base image - run: | + run: | cd index/server export GOPATH=$(go env GOPATH) go install github.com/deepmap/oapi-codegen/cmd/oapi-codegen@v1.12.4 @@ -50,7 +50,7 @@ jobs: needs: indexServerBuild strategy: matrix: - repo: ['devfile/registry'] + repo: ["devfile/registry"] runs-on: ubuntu-latest steps: - name: Get the repository name and commit sha diff --git a/README.md b/README.md index 37b9e5dba..890369c92 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@