Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable/none] Update git actions #590

Merged
merged 4 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/chart-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4.1.7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4.1.7
- uses: deepakputhraya/action-pr-title@master
with:
regex: '^\[stable\/+.+].*'
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/helm-conftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@ name: Helm conftest
on: [pull_request]
jobs:
check-charts:
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
name: Run conftest for all charts
runs-on: ubuntu-latest
container:
image: instrumenta/helm-conftest:latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/[email protected]

- name: Validate all charts
run: bash ci/helm-conftest.sh
2 changes: 1 addition & 1 deletion .github/workflows/helm-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ jobs:
image: jnorwood/helm-docs:v1.11.0
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4.1.7
- name: Check all charts README.md
run: sh ci/helm-docs.sh
2 changes: 1 addition & 1 deletion .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4.1.7
- name: Run lint
uses: avto-dev/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
image: alpine/helm:3.9.3
steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4.1.7
- name: Install git
run: apk add --no-cache git
- name: Install Helm Push plugin
Expand Down
Loading