Skip to content

Commit 9ebbfb6

Browse files
release 8.0.0 - airflow 2.0 (#96)
Signed-off-by: Mathew Wicks <[email protected]>
1 parent 2885b3d commit 9ebbfb6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+3602
-2744
lines changed

.github/workflows/lint-test.yaml

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,27 @@ jobs:
1414
- name: Install Helm
1515
uses: azure/setup-helm@v1
1616
with:
17-
version: v3.4.0
17+
version: v3.5.3
1818

19-
- name: Run chart-testing (lint)
20-
id: lint
21-
uses: helm/[email protected]
19+
- name: Install chart-testing
20+
uses: helm/[email protected]
2221
with:
23-
command: lint
24-
config: ct-config.yaml
22+
version: v3.3.1
23+
24+
- name: Run chart-testing (list-changed)
25+
id: list-changed
26+
run: |
27+
changed=$(ct list-changed --config ct-config.yaml)
28+
if [[ -n "$changed" ]]; then
29+
echo "::set-output name=changed::true"
30+
fi
31+
32+
- name: Run chart-testing (lint)
33+
run: ct lint --config ct-config.yaml
2534

2635
- name: Create kind cluster
27-
uses: helm/kind-action@v1.0.0
28-
if: steps.lint.outputs.changed == 'true'
36+
uses: helm/kind-action@v1.1.0
37+
if: steps.list-changed.outputs.changed == 'true'
2938

3039
- name: Run chart-testing (install)
31-
uses: helm/[email protected]
32-
with:
33-
command: install
34-
config: ct-config.yaml
40+
run: ct install --config ct-config.yaml

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
- name: Install Helm
2323
uses: azure/setup-helm@v1
2424
with:
25-
version: v3.4.0
25+
version: v3.5.3
2626

2727
- name: Add dependency chart repos
2828
run: |
2929
helm repo add stable https://charts.helm.sh/stable
3030
3131
- name: Run chart-releaser
32-
uses: helm/chart-releaser-action@v1.0.0
32+
uses: helm/chart-releaser-action@v1.2.0
3333
env:
3434
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

charts/airflow/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
description: airflow is a platform to programmatically author, schedule, and monitor workflows
33
name: airflow
4-
version: 7.16.0
5-
appVersion: 1.10.12
4+
version: 8.0.0
5+
appVersion: 2.0.1
66
icon: https://airflow.apache.org/_images/pin_large.png
77
home: https://airflow.apache.org/
88
maintainers:

0 commit comments

Comments
 (0)