Skip to content

chore(deps): bump github.com/go-logr/logr from 1.4.3 to 1.4.4 #1420

chore(deps): bump github.com/go-logr/logr from 1.4.3 to 1.4.4

chore(deps): bump github.com/go-logr/logr from 1.4.3 to 1.4.4 #1420

Workflow file for this run

name: E2E Tests
on:
pull_request:
jobs:
test-e2e:
permissions:
contents: read
strategy:
matrix:
arch: [amd64, arm64]
include:
- arch: amd64
runner: ubuntu-latest
- arch: arm64
runner: ubuntu-24.04-arm
name: E2E test
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: "go.mod"
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
libelf-dev \
clang \
llvm \
libbpf-dev \
jq
- name: Running Test e2e
run: |
make test-e2e
- name: Check runtime-enforcer logs for unexpected ERROR logs
run: |
chmod +x hack/ci/check-runtime-enforcer-error-logs.sh
hack/ci/check-runtime-enforcer-error-logs.sh test/e2e/logs
- name: Upload cluster logs
if: failure()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: e2e-test-cluster-logs
path: test/e2e/logs
if-no-files-found: error
retention-days: 7