mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2026-05-04 14:21:33 +02:00
Bumps the dev-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6.0.1` | `6.0.2` | | [actions/setup-go](https://github.com/actions/setup-go) | `6.3.0` | `6.4.0` | | [renovatebot/github-action](https://github.com/renovatebot/github-action) | `46.1.4` | `46.1.7` | | [actions/setup-python](https://github.com/actions/setup-python) | `6.0.0` | `6.2.0` | | [azure/setup-helm](https://github.com/azure/setup-helm) | `4.3.1` | `5.0.0` | Updates `actions/checkout` from 6.0.1 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6.0.1...de0fac2e4500dabe0009e67214ff5f5447ce83dd) Updates `actions/setup-go` from 6.3.0 to 6.4.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v6.3.0...v6.4.0) Updates `renovatebot/github-action` from 46.1.4 to 46.1.7 - [Release notes](https://github.com/renovatebot/github-action/releases) - [Changelog](https://github.com/renovatebot/github-action/blob/main/CHANGELOG.md) - [Commits](0b17c4eb90...3633cede7d) Updates `actions/setup-python` from 6.0.0 to 6.2.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...a309ff8b426b58ec0e2a45f0f869d46889d02405) Updates `azure/setup-helm` from 4.3.1 to 5.0.0 - [Release notes](https://github.com/azure/setup-helm/releases) - [Changelog](https://github.com/Azure/setup-helm/blob/main/CHANGELOG.md) - [Commits](1a275c3b69...dda3372f75) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: actions/setup-go dependency-version: 6.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: renovatebot/github-action dependency-version: 46.1.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dev-dependencies - dependency-name: actions/setup-python dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dev-dependencies - dependency-name: azure/setup-helm dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
199 lines
6.7 KiB
YAML
199 lines
6.7 KiB
YAML
name: Lint and Test Chart
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "charts/external-dns/**"
|
|
|
|
concurrency:
|
|
group: chart-pr-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
lint-test:
|
|
name: Lint and Test
|
|
if: github.repository == 'kubernetes-sigs/external-dns'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install Helm
|
|
uses: azure/setup-helm@dda3372f752e03dde6b3237bc9431cdc2f7a02a2 # v5.0.0
|
|
with:
|
|
version: latest
|
|
|
|
- name: Configure Helm
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
helm plugin install https://github.com/losisin/helm-values-schema-json.git --verify=false
|
|
helm plugin install https://github.com/helm-unittest/helm-unittest.git --verify=false
|
|
|
|
- name: Run Helm Schema check
|
|
working-directory: charts/external-dns
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
helm schema
|
|
if [[ -n "$(git status --porcelain --untracked-files=no)" ]]
|
|
then
|
|
echo "Schema not up to date. Please run helm schema and commit changes!" >&2
|
|
exit 1
|
|
fi
|
|
|
|
- name: Install Helm Docs
|
|
uses: action-stars/install-tool-from-github-release@1fa61c3bea52eca3bcdb1f5c961a3b113fe7fa54 # v0.2.6
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
owner: norwoodj
|
|
repository: helm-docs
|
|
arch_amd64: x86_64
|
|
os_linux: Linux
|
|
check_command: helm-docs --version
|
|
version: latest
|
|
|
|
- name: Run Helm Docs check
|
|
run: |
|
|
set -euo pipefail
|
|
helm-docs
|
|
if [[ -n "$(git status --porcelain --untracked-files=no)" ]]
|
|
then
|
|
echo "Documentation not up to date. Please run helm-docs and commit changes!" >&2
|
|
exit 1
|
|
fi
|
|
|
|
- name: Run Helm Unit Tests
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
helm unittest -f 'tests/*_test.yaml' charts/external-dns
|
|
|
|
- name: Install YQ
|
|
uses: action-stars/install-tool-from-github-release@1fa61c3bea52eca3bcdb1f5c961a3b113fe7fa54 # v0.2.6
|
|
with:
|
|
github_token: ${{ github.token }}
|
|
owner: mikefarah
|
|
repository: yq
|
|
extract: false
|
|
filename_format: "{name}_{os}_{arch}"
|
|
check_command: yq --version
|
|
version: latest
|
|
|
|
- name: Install MDQ
|
|
uses: action-stars/install-tool-from-github-release@1fa61c3bea52eca3bcdb1f5c961a3b113fe7fa54 # v0.2.6
|
|
with:
|
|
github_token: ${{ github.token }}
|
|
owner: yshavit
|
|
repository: mdq
|
|
arch_amd64: x64
|
|
filename_format: "{name}-{os}-{arch}.{ext}"
|
|
check_command: mdq --version
|
|
version: latest
|
|
|
|
- name: Run CHANGELOG check
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
chart_file_path="./charts/external-dns/Chart.yaml"
|
|
changelog_file_path="./charts/external-dns/CHANGELOG.md"
|
|
version="$(yq eval '.version' "${chart_file_path}")"
|
|
entry="$(mdq --no-br --link-format inline "# v${version}" <"${changelog_file_path}" || true)"
|
|
if [[ -z "${entry}" ]]
|
|
then
|
|
echo "No CHANGELOG entry for ${chart} version ${version}!" >&2
|
|
exit 1
|
|
fi
|
|
|
|
added="$(mdq --output plain "# v${version} | # Added | -" <"${changelog_file_path}" || true)"
|
|
changed="$(mdq --output plain "# v${version} | # Changed | -" <"${changelog_file_path}" || true)"
|
|
deprecated="$(mdq --output plain "# v${version} | # Deprecated | -" <"${changelog_file_path}" || true)"
|
|
removed="$(mdq --output plain "# v${version} | # Removed | -" <"${changelog_file_path}" || true)"
|
|
fixed="$(mdq --output plain "# v${version} | # Fixed | -" <"${changelog_file_path}" || true)"
|
|
security="$(mdq --output plain "# v${version} | # Security | -" <"${changelog_file_path}" || true)"
|
|
|
|
changes_path="./charts/external-dns/changes.txt"
|
|
rm -f "${changes_path}"
|
|
|
|
old_ifs="${IFS}"
|
|
IFS=$'\n'
|
|
|
|
for item in ${added}; do
|
|
printf -- '- kind: added\n description: "%s"\n' "${item%.*}." >> "${changes_path}"
|
|
done
|
|
|
|
for item in ${changed}; do
|
|
printf -- '- kind: changed\n description: "%s"\n' "${item%.*}." >> "${changes_path}"
|
|
done
|
|
|
|
for item in ${deprecated}; do
|
|
printf -- '- kind: deprecated\n description: "%s"\n' "${item%.*}." >> "${changes_path}"
|
|
done
|
|
|
|
for item in ${removed}; do
|
|
printf -- '- kind: removed\n description: "%s"\n' "${item%.*}." >> "${changes_path}"
|
|
done
|
|
|
|
for item in ${fixed}; do
|
|
printf -- '- kind: fixed\n description: "%s"\n' "${item%.*}." >> "${changes_path}"
|
|
done
|
|
|
|
for item in ${security}; do
|
|
printf -- '- kind: security\n description: "%s"\n' "${item%.*}." >> "${changes_path}"
|
|
done
|
|
|
|
IFS="${old_ifs}"
|
|
|
|
if [[ -f "${changes_path}" ]]; then
|
|
echo "::group::Changes"
|
|
cat "${changes_path}"
|
|
echo "::endgroup::"
|
|
|
|
changes="$(cat "${changes_path}")" yq eval --inplace '.annotations["artifacthub.io/changes"] |= strenv(changes)' "${chart_file_path}"
|
|
rm -f "${changes_path}"
|
|
fi
|
|
|
|
- name: Install Artifact Hub CLI
|
|
uses: action-stars/install-tool-from-github-release@1fa61c3bea52eca3bcdb1f5c961a3b113fe7fa54 # v0.2.6
|
|
with:
|
|
github_token: ${{ github.token }}
|
|
owner: artifacthub
|
|
repository: hub
|
|
name: ah
|
|
check_command: ah version
|
|
version: latest
|
|
|
|
- name: Run Artifact Hub lint
|
|
run: ah lint --kind helm --path ./charts/external-dns || exit 1
|
|
|
|
- name: Install Python
|
|
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
with:
|
|
token: ${{ github.token }}
|
|
python-version: "3.x"
|
|
|
|
- name: Set-up chart-testing
|
|
uses: helm/chart-testing-action@6ec842c01de15ebb84c8627d2744a0c2f2755c9f # v2.8.0
|
|
|
|
- name: Run chart-testing lint
|
|
run: ct lint --charts=./charts/external-dns --target-branch=${{ github.event.repository.default_branch }} --check-version-increment=false
|
|
|
|
- name: Create Kind cluster
|
|
uses: helm/kind-action@ef37e7f390d99f746eb8b610417061a60e82a6cc # v1.14.0
|
|
with:
|
|
wait: 120s
|
|
|
|
- name: Run chart-testing install
|
|
run: ct install --charts=./charts/external-dns --target-branch=${{ github.event.repository.default_branch }}
|