Skip to content

Bump github.com/google/cel-go from 0.28.1 to 0.29.1 #1180

Bump github.com/google/cel-go from 0.28.1 to 0.29.1

Bump github.com/google/cel-go from 0.28.1 to 0.29.1 #1180

Workflow file for this run

name: verify
on:
push:
branches:
- master
pull_request:
paths:
- '**'
workflow_dispatch:
merge_group:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Run the verify target
run: |
export GOPATH=$(go env GOPATH)
make verify
kind:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Deploy Kind
run: make kind-cluster
- name: Apply CRDs
run: |
set -e
for crd in $(ls crds/*.yaml); do
kubectl create -f $crd
done