Skip to content

Commit 855dca5

Browse files
Build(deps): bump dependabot/fetch-metadata from 2.4.0 to 2.5.0 (#1476)
* Build(deps): bump dependabot/fetch-metadata from 2.4.0 to 2.5.0 Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) from 2.4.0 to 2.5.0. - [Release notes](https://github.com/dependabot/fetch-metadata/releases) - [Commits](dependabot/fetch-metadata@v2.4.0...v2.5.0) --- updated-dependencies: - dependency-name: dependabot/fetch-metadata dependency-version: 2.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chrome-secomp: add openat2 Fixes: docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error closing exec fds: get handle to /proc/thread-self/fd: unsafe procfs detected: openat2 fsmount:fscontext:proc/thread-self/fd/: function not implemented See https://forums.docker.com/t/unable-to-start-container-process/150457 * chrome-seccomp.json: log not allowed syscalls instead of blocking * chrome-secomp: add statx Fixes docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error closing exec fds: get handle to /proc/thread-self/fd: reopen fsmount:fscontext:proc/thread-self/fd/: check safety of /proc/thread-self/fd/8 magiclink: get root mount id: statx(STATX_MNT_ID_...) fsmount:fscontext:proc/: could not get mount id: operation not permitted --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: macbre <maciej.brencz@gmail.com>
1 parent e29856d commit 855dca5

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/auto-merge-dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- name: Dependabot metadata
1515
id: metadata
16-
uses: dependabot/fetch-metadata@v2.4.0
16+
uses: dependabot/fetch-metadata@v2.5.0
1717
with:
1818
github-token: "${{ secrets.GITHUB_TOKEN }}"
1919
- name: Enable auto-merge for Dependabot PRs

chrome-seccomp.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -826,6 +826,11 @@
826826
"action": "SCMP_ACT_ALLOW",
827827
"args": null
828828
},
829+
{
830+
"name": "openat2",
831+
"action": "SCMP_ACT_ALLOW",
832+
"args": null
833+
},
829834
{
830835
"name": "pause",
831836
"action": "SCMP_ACT_ALLOW",
@@ -1341,6 +1346,11 @@
13411346
"action": "SCMP_ACT_ALLOW",
13421347
"args": null
13431348
},
1349+
{
1350+
"name": "statx",
1351+
"action": "SCMP_ACT_ALLOW",
1352+
"args": null
1353+
},
13441354
{
13451355
"name": "symlink",
13461356
"action": "SCMP_ACT_ALLOW",

0 commit comments

Comments
 (0)