Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rofafor committed Apr 5, 2024
1 parent 477c128 commit b9bd433
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ jobs:
timeout-minutes: 5

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
check-latest: true

- uses: azure/setup-helm@v3
- uses: azure/setup-helm@v4

- uses: helm/chart-testing-action@v2.5.0
- uses: helm/chart-testing-action@v2.6.1

- name: Lint chart
run: ct lint --chart-dirs keydb --charts keydb --validate-maintainers=false

- name: Create kind cluster
uses: helm/kind-action@v1.4.0
uses: helm/kind-action@v1

- name: Install required CRDs
run: kubectl apply -f keydb/test-crds/service-monitor.yaml
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,24 @@ jobs:
timeout-minutes: 15

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1

- uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.12'
check-latest: true

- uses: azure/setup-helm@v3
- uses: azure/setup-helm@v4

- uses: helm/chart-testing-action@v2.5.0
- uses: helm/chart-testing-action@v2.6.1

- name: Lint chart
run: ct lint --chart-dirs keydb --charts keydb --validate-maintainers=false

- name: Create kind cluster
uses: helm/kind-action@v1.4.0
uses: helm/kind-action@v1

- name: Install required CRDs
run: kubectl apply -f keydb/test-crds/service-monitor.yaml
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
timeout-minutes: 5

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -23,18 +23,18 @@ jobs:
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
check-latest: true

- uses: azure/setup-helm@v3
- uses: azure/setup-helm@v4

- name: Package chart
run: helm package ./keydb/ --destination ./.deploy/ --version ${{github.ref_name}}

- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.5.0
uses: helm/chart-releaser-action@v1.6.0
with:
skip_packaging: true
env:
Expand Down

0 comments on commit b9bd433

Please sign in to comment.