Skip to content

Commit

Permalink
chore: specify kubernetes version in matrix to be used with minikube
Browse files Browse the repository at this point in the history
Signed-off-by: Abhinandan Purkait <[email protected]>
  • Loading branch information
Abhinandan-Purkait committed Dec 7, 2023
1 parent 3ce6a57 commit 98afb8b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ jobs:
# to ignore builds on release
if: ${{ (github.event.ref_type != 'tag') }}
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
kubernetes: [v1.27.3]
needs: ['lint', 'unit-test']
steps:
- name: Checkout
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ jobs:
# to ignore builds on release
if: ${{ (github.event.ref_type != 'tag') }}
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
kubernetes: [v1.27.3]
needs: ['lint', 'unit-test']
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion provisioner/provisioner.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ import (
)

const (
// Ping messgae
// Ping message
Ping string = "ping"
// DefaultCASType Event application name constant for volume event
DefaultCASType string = "nfs"
Expand Down

0 comments on commit 98afb8b

Please sign in to comment.