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

Update CI dependecies #171

Merged
merged 4 commits into from
Aug 21, 2023
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
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Helm
uses: azure/setup-helm@v3
with:
version: 3.11.3
version: 3.12.3

- name: Install unittest plugin
run: helm plugin install https://github.com/helm-unittest/helm-unittest --version 0.3.1
Expand All @@ -28,7 +28,7 @@ jobs:
go-version: '>=1.19.0'

- name: Install kubeconform
run: go install github.com/yannh/kubeconform/cmd/kubeconform@v0.6.2
run: go install github.com/yannh/kubeconform/cmd/kubeconform@v0.6.3

- name: kubeconform
run: ./scripts/kubeconform.sh
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: GitHub slug
uses: rlespinasse/github-slug-action@3.1.0
uses: rlespinasse/github-slug-action@v4
with:
short-length: 8

- name: Make releases directory structure
run: mkdir -p $GITHUB_WORKSPACE/${{ env.GITHUB_REF_SLUG }}

- name: Install Helm
uses: azure/setup-helm@v3
with:
version: 3.9.4
version: 3.12.3

- name: helm lint
run: helm lint helm-chart-sources/*
Expand Down