Skip to content

Commit c0c8829

Browse files
committed
chore: update dir version to latest
Signed-off-by: Árpád Csepi <csepi.arpad@outlook.com>
1 parent dc17d24 commit c0c8829

6 files changed

Lines changed: 284 additions & 232 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ on:
1010
tags:
1111
- "v*.*.*"
1212
pull_request:
13+
workflow_dispatch:
14+
inputs:
15+
dir_chart_version:
16+
required: false
17+
type: string
18+
description: "Override the version of the dir Helm chart to install for the tests."
19+
dirctl_image_tag:
20+
required: false
21+
type: string
22+
description: "Override the tag of the dir-ctl Docker image to use in the tests."
1323

1424
permissions:
1525
contents: write
@@ -78,8 +88,8 @@ jobs:
7888
- changes
7989
uses: ./.github/workflows/reusable-test-sdk.yaml
8090
with:
81-
dir_chart_version: v1.3.0
82-
dirctl_image_tag: v1.3.0
91+
dir_chart_version: ${{ inputs.dir_chart_version }}
92+
dirctl_image_tag: ${{ inputs.dirctl_image_tag }}
8393

8494
release:
8595
name: Release

.github/workflows/reusable-test-sdk.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ on:
77
workflow_call:
88
inputs:
99
dir_chart_version:
10-
required: true
10+
required: false
1111
type: string
12-
description: "The version of the dir Helm chart to install for the tests."
12+
description: "Override the version of the dir Helm chart to install for the tests."
1313
dirctl_image_tag:
14-
required: true
14+
required: false
1515
type: string
16-
description: "The tag of the dir-ctl Docker image to use in the tests."
16+
description: "Override the tag of the dir-ctl Docker image to use in the tests."
1717

1818
permissions:
1919
id-token: write

Taskfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
version: "3"
55

66
vars:
7-
DIR_CHART_VERSION: '{{ .DIR_CHART_VERSION | default "0.0.0-latest" }}'
8-
DIRCTL_IMAGE_TAG: '{{ .DIRCTL_IMAGE_TAG | default "latest" }}'
7+
DIR_CHART_VERSION: '{{ .DIR_CHART_VERSION | default "v1.4.0" }}'
8+
DIRCTL_IMAGE_TAG: '{{ .DIRCTL_IMAGE_TAG | default "v1.4.0" }}'
99
RENOVATE_VERSION: "43.89.5"
1010
BIN_DIR: "{{ .ROOT_DIR }}/.bin"
1111
HELM_VERSION: "4.1.3"

0 commit comments

Comments
 (0)