Skip to content

Update Syscalls

Update Syscalls #22

name: Update Syscalls
on:
workflow_dispatch:
schedule:
- cron: '0 2 1 * *'
jobs:
update-syscalls:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: master
path: libs
- name: Bump syscalls
uses: falcosecurity/syscalls-bumper@main # should be pointing to main
with:
repo-root: ${{ github.workspace }}/libs
- name: Create Pull Request
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5
with:
path: libs
signoff: true
base: master
branch: update/syscalls
title: 'update(driver): update syscalls tables and driver report.'
body: |
This PR updates the list of supported syscalls from the latest kernel. Do not edit this PR.
/area driver
```release-note
NONE
```
commit-message: 'update(driver): update syscalls tables and driver report.'
token: ${{ secrets.GITHUB_TOKEN }}