From 9640ab5da5d96b848832393dbb4677b761c7bd4c Mon Sep 17 00:00:00 2001 From: mgianluc Date: Mon, 14 Oct 2024 14:32:08 +0200 Subject: [PATCH] (chore) update tag to v0.40.0 --- .github/workflows/main-ci.yml | 2 +- Makefile | 4 ++-- manifest/manifest.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main-ci.yml b/.github/workflows/main-ci.yml index 45499f8..958fe7b 100644 --- a/.github/workflows/main-ci.yml +++ b/.github/workflows/main-ci.yml @@ -14,7 +14,7 @@ jobs: steps: - name: checkout - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 - name: Install dependencies run: npm install diff --git a/Makefile b/Makefile index 34bb544..e4ce1cd 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ IMAGE_NAME ?= dashboard ARCH ?= $(shell go env GOARCH) OS ?= $(shell uname -s | tr A-Z a-z) export CONTROLLER_IMG ?= $(REGISTRY)/$(IMAGE_NAME) -TAG ?= main +TAG ?= v0.40.0 # Directories. TOOLS_DIR := hack/tools @@ -65,4 +65,4 @@ manifests: ## Generate manifests MANIFEST_IMG=$(CONTROLLER_IMG) MANIFEST_TAG=$(TAG) $(MAKE) set-manifest-image set-manifest-image: - sed -i'' -e 's@image: .*@image: '"docker.io/${MANIFEST_IMG}:$(MANIFEST_TAG)"'@' ./manifest/manifest.yaml >> ./manifest/manifest.yaml-e \ No newline at end of file + sed -i'' -e 's@image: .*@image: '"docker.io/${MANIFEST_IMG}:$(MANIFEST_TAG)"'@' ./manifest/manifest.yaml >> ./manifest/manifest.yaml-e diff --git a/manifest/manifest.yaml b/manifest/manifest.yaml index 0762eb9..34fc868 100644 --- a/manifest/manifest.yaml +++ b/manifest/manifest.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: dashboard - image: docker.io/projectsveltos/dashboard:main + image: docker.io/projectsveltos/dashboard:v0.40.0 ports: - containerPort: 5173 ---