Fix medium severity CVEs (#159) #356
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: backward-compatibility-5mins | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
integration: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Start a kind cluster with containerd | |
uses: helm/kind-action@v1.9.0 | |
with: | |
cluster_name: kind-${{ github.run_id }} | |
kubectl_version: "v1.25.2" | |
config: ./hack/ci/containerd-cluster-conf.yaml | |
- name: Build image | |
run: ./hack/ci/build.sh | |
- name: Test compatibility with versions prior to v0.4.2 | |
run: ./test/integration/backward-compatability.sh |