Skip to content

Update module github.com/slack-go/slack to v0.13.1 #257

Update module github.com/slack-go/slack to v0.13.1

Update module github.com/slack-go/slack to v0.13.1 #257

Workflow file for this run

name: Lint helm chart
on:
push:
paths:
- 'charts/**'
- '.github/**'
workflow_dispatch:
env:
HELM_VERSION: v3.10.0
jobs:
lint-chart:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: ${{ env.HELM_VERSION }}
# python is a requirement for the chart-testing action below (supports yamllint among other tests)
- uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Set up chart-testing
uses: helm/[email protected]
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --config charts/.ci/ct-config.yaml --target-branch main)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
- name: Run chart-testing (lint)
run: ct lint --config charts/.ci/ct-config.yaml --target-branch main