chore(deps): bump google.golang.org/protobuf from 1.31.0 to 1.33.0 #249
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Testing | |
on: | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
kubernetes_version: | |
- "kindest/node:v1.26.0" | |
- "kindest/node:v1.25.2" | |
- "kindest/node:v1.24.6" | |
- "kindest/node:v1.23.12" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup GO | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Build | |
run: | | |
make build | |
mv kubectl-permissions /usr/local/bin | |
- name: Install Kubectl | |
uses: azure/setup-kubectl@v3 | |
- name: Create Kind Cluster | |
uses: helm/[email protected] | |
with: | |
node_image: ${{ matrix.kubernetes_version }} | |
wait: 300s | |
- name: Deploy RBAC | |
run: | | |
kubectl apply -f example-rbac.yaml | |
kubectl apply -f aggregated-roles.yaml | |
- name: Integration Tests | |
run: | | |
make integration |