From 755381701c461cbb80ca94cf4b9d07fa72ba1b0a Mon Sep 17 00:00:00 2001 From: Lukasz Zajaczkowski Date: Fri, 16 Feb 2024 09:52:17 +0100 Subject: [PATCH] more fixes --- .github/workflows/e2e.yaml | 4 ++-- Makefile | 2 +- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 5dc6d450..1947f069 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -9,9 +9,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Create kind cluster - uses: helm/kind-action@v1.8.0 + uses: helm/kind-action@v1.9.0 with: install_only: true - run: | diff --git a/Makefile b/Makefile index 5f4ad221..ccf9fcab 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ BUILD ?= $(shell git rev-parse --short HEAD) DKR_HOST ?= dkr.plural.sh GOOS ?= darwin GOARCH ?= arm64 -GOLANG_CROSS_VERSION ?= v1.20.2 +GOLANG_CROSS_VERSION ?= v1.22.0 PACKAGE ?= github.com/pluralsh/plural BASE_LDFLAGS ?= -s -w LDFLAGS ?= $(BASE_LDFLAGS) $\ diff --git a/go.mod b/go.mod index 8b244351..5c0b0fbb 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/pluralsh/plural-cli -go 1.22 +go 1.21 require ( cloud.google.com/go/compute v1.19.2