helm / chart-testing-action

A GitHub Action to lint and test Helm charts
https://github.com/helm/chart-testing
Apache License 2.0
251 stars 71 forks source link

Add Mayor version tags to be pinned by actions #90

Closed gsanchezgavier closed 2 years ago

gsanchezgavier commented 2 years ago

A quite common pattern on actions is to have a mayor version tag like v2 that will be pointing to the latest release of that mayor. This makes possible to configure the GH workflows pointing to that latest.

jobs:
  chart-lint:
    name: Helm chart Lint
    runs-on: ubuntu-latest
    timeout-minutes: 10
    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0
      - uses: helm/chart-testing-action@v2
btkostner commented 2 years ago

This looks like a duplicate of #77

gsanchezgavier commented 2 years ago

Closing dup #77