Dependencies/Fix High Severity Vulnerability CVE-2023-44487
Found in the latest image 8.5.11
#533
Workflow file for this run
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: Build | |
on: | |
push: | |
paths-ignore: | |
- "docs/**" | |
- "logo/**" | |
- "examples/**" | |
- "README.md" | |
- "charts/opa-kube-mgmt/README.md" | |
branches: | |
- "master" | |
pull_request: | |
branches: | |
- "master" | |
- "feat/*" | |
- "fix/*" | |
jobs: | |
build_job: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: WillAbides/[email protected] | |
with: | |
go-version: "1.23.2" | |
- run: | | |
go install honnef.co/go/tools/cmd/[email protected] | |
- uses: extractions/setup-just@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- run: just test | |
- uses: rinx/[email protected] | |
with: | |
skipClusterCreation: true | |
- uses: jaxxstorm/action-install-gh-release@v1 | |
with: | |
repo: GoogleContainerTools/skaffold | |
tag: v2.6.1 | |
cache: enable | |
extension-matching: disable | |
rename-to: skaffold | |
chmod: 0755 | |
- run: just k3d | |
- run: pip install httpie | |
- run: | | |
just test-e2e-all | |
- name: failure logs | |
if: ${{ failure() }} | |
run: | | |
echo "---------------------------------------" | |
kubectl get all | |
echo "---------------------------------------" | |
kubectl describe po kube-mgmt-opa-kube-mgmt || true | |
echo "---------------------------------------" | |
kubectl logs -l app=kube-mgmt-opa-kube-mgmt -c opa --tail=-1 | |
echo "---------------------------------------" | |
kubectl logs -l app=kube-mgmt-opa-kube-mgmt -c mgmt --tail=-1 | |
echo "---------------------------------------" |