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

chore(deps): update kubernetes related testing dependencies #81

Merged
merged 2 commits into from
Jun 18, 2024
Merged
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
11 changes: 3 additions & 8 deletions .github/workflows/lint-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,12 @@ jobs:
dictionary: .github/rt-dictionary.yaml

- name: Calculate next version
if: ${{ steps.empty.outputs.is-empty == 'false' && steps.held.outputs.is-held == 'false' }}
id: version
uses: newrelic/release-toolkit/next-version@v1

chart-unittest:
name: Unit test Helm charts
runs-on: ubuntu-latest
needs:
- changelog-checks
if: ${{ needs.changelog-checks.outputs.skip-release != 'true' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -74,8 +70,8 @@ jobs:
name: Lint Helm charts
runs-on: ubuntu-latest
needs:
# Lint charts using the next version.
- changelog-checks
if: ${{ needs.changelog-checks.outputs.skip-release != 'true' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -99,7 +95,6 @@ jobs:
- chart-unittest
# To test the upgrade path we need the previous and next version.
- changelog-checks
if: ${{ needs.changelog-checks.outputs.skip-release != 'true' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -108,8 +103,8 @@ jobs:
- name: Install Minikube
uses: manusa/[email protected]
with:
minikube version: v1.31.0
kubernetes version: v1.27.4
minikube version: v1.33.1
kubernetes version: v1.30.2
github token: ${{ secrets.GITHUB_TOKEN }}
driver: docker
start args: "--container-runtime=containerd"
Expand Down
Loading