diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 92a2628..402bf8d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,7 +32,7 @@ jobs: name: Run Tests on falcosecurity/falco image runs-on: ubuntu-latest container: - image: falcosecurity/falco:${{ github.event.inputs.version || 'master' }} + image: falcosecurity/falco-driver-loader:${{ github.event.inputs.version || 'master' }} steps: - name: Checkout repo uses: actions/checkout@v4 diff --git a/tests/falco/legacy_test.go b/tests/falco/legacy_test.go index 1b9d01a..7f0994d 100644 --- a/tests/falco/legacy_test.go +++ b/tests/falco/legacy_test.go @@ -2665,7 +2665,6 @@ func TestFalco_Legacy_FalcoEventGenerator(t *testing.T) { assert.Equal(t, 1, res.Detections().OfRule("Write below etc").Count()) assert.Equal(t, 1, res.Detections().OfRule("System procs network activity").Count()) assert.Equal(t, 1, res.Detections().OfRule("Mkdir binary dirs").Count()) - assert.Equal(t, 1, res.Detections().OfRule("System user interactive").Count()) assert.Equal(t, 1, res.Detections().OfRule("DB program spawned process").Count()) assert.Equal(t, 0, res.Detections().OfRule("Non sudo setuid").Count()) assert.Equal(t, 1, res.Detections().OfRule("Create files below dev").Count())