(P4DEVOPS-7373) Use artifactory instead of bitnami repos #253
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Helm Test | |
on: pull_request | |
jobs: | |
test: | |
name: Test Helm Chart | |
if: contains(github.event.pull_request.labels.*.name, 'documentation') != true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
clean: true | |
fetch-depth: 0 | |
- name: Activate twingate to access artifactory | |
uses: twingate/github-action@main | |
with: | |
service-key: ${{ secrets.TWINGATE_KEY }} | |
- uses: azure/setup-helm@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@v2 | |
- name: Run chart-testing (lint) | |
run: ct lint --chart-dirs helm-charts --all --validate-maintainers=false --chart-repos artifactory=https://artifactory.delivery.puppetlabs.net/artifactory/helm__local |