Skip to content

Commit 94214b8

Browse files
Release v0.10.0 (#405)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: David Collom <[email protected]>
1 parent b6ae308 commit 94214b8

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

.github/workflows/helm-test.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
go-version-file: go.mod
3131

3232
- uses: azure/setup-helm@v4
33+
with:
34+
version: v3.19.0
3335

3436
- run: helm lint deploy/charts/version-checker
3537

@@ -46,6 +48,8 @@ jobs:
4648
go-version-file: go.mod
4749

4850
- uses: azure/setup-helm@v4
51+
with:
52+
version: v3.19.0
4953

5054
- name: Install helm Plugins
5155
run: |

.github/workflows/release.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ jobs:
116116
uses: mikepenz/release-changelog-builder-action@v6
117117
with:
118118
ignorePreReleases: true
119+
toTag: "main"
119120

120121
- name: Create Release PR
121122
uses: devops-infra/[email protected]
@@ -157,6 +158,8 @@ jobs:
157158

158159
- name: Setup Helm
159160
uses: azure/setup-helm@v4
161+
with:
162+
version: v3.19.0
160163

161164
# FIXME: We need a Repo Created in Quay ahead of time for this to work
162165
# - name: Login to Quay.io for OCI Push

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ verify: test build ## tests and builds version-checker
2222

2323
image: ## build docker image
2424
GOARCH=$(ARCH) GOOS=linux CGO_ENABLED=0 go build -o ./bin/version-checker-linux ./cmd/.
25-
docker build -t quay.io/jetstack/version-checker:v0.9.3 .
25+
docker build -t quay.io/jetstack/version-checker:v0.10.0 .
2626

2727
clean: ## clean up created files
2828
rm -rf \

deploy/charts/version-checker/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
2-
appVersion: "v0.9.3"
3-
version: "v0.9.3"
2+
appVersion: "v0.10.0"
3+
version: "v0.10.0"
44
description: A Helm chart for version-checker
55
home: https://github.com/jetstack/version-checker
66
name: version-checker

deploy/charts/version-checker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# version-checker
22

3-
![Version: v0.9.3](https://img.shields.io/badge/Version-v0.9.3-informational?style=flat-square) ![AppVersion: v0.9.3](https://img.shields.io/badge/AppVersion-v0.9.3-informational?style=flat-square)
3+
![Version: v0.10.0](https://img.shields.io/badge/Version-v0.10.0-informational?style=flat-square) ![AppVersion: v0.10.0](https://img.shields.io/badge/AppVersion-v0.10.0-informational?style=flat-square)
44

55
A Helm chart for version-checker
66

deploy/yaml/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ spec:
5050
spec:
5151
serviceAccountName: version-checker
5252
containers:
53-
- image: quay.io/jetstack/version-checker:v0.9.3
53+
- image: quay.io/jetstack/version-checker:v0.10.0
5454
imagePullPolicy: Always
5555
ports:
5656
- containerPort: 8080

0 commit comments

Comments
 (0)