Skip to content

chore(deps): bump hashicorp/vault from 1.15.6 to 1.16.0 #153

chore(deps): bump hashicorp/vault from 1.15.6 to 1.16.0

chore(deps): bump hashicorp/vault from 1.15.6 to 1.16.0 #153

Workflow file for this run

name: Lint Chart and Dockerfile
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
env:
CT_TARGET_BRANCH: main
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.4.0
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
- name: Run chart-testing (lint)
run: ct lint --excluded-charts vault-gcr-secrets
# This fails all the time unless I run it, so removing for now
# - name: Docker Lint
# uses: luke142367/Docker-Lint-Action@v1.1.1
# with:
# target: Dockerfile
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}