Skip to content

Commit a876a21

Browse files
authored
Merge branch 'devel' into ci/remove-version-from-docker-compose-file
2 parents 417ea2e + 7111131 commit a876a21

File tree

8 files changed

+17
-7
lines changed

8 files changed

+17
-7
lines changed

.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

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232

3333
# Initializes the CodeQL tools for scanning.
3434
- name: Initialize CodeQL

.github/workflows/dockerimage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
DOCKER_TAG: ghcr.io/macbre/phantomas:latest
1717

1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020

2121
# https://github.com/marketplace/actions/build-and-push-docker-images
2222
- name: Build the Docker image with ${{ env.DOCKER_TAG }} tag

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- uses: actions/setup-node@v6
1515
with:
1616
node-version: latest

.github/workflows/npmpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
npm-publish:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515

1616
#
1717
# https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#publish-to-npmjs-and-gpr-with-npm

.github/workflows/push-to-ghcr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020

2121
- name: Build and publish a Docker image for ${{ github.repository }}
2222
uses: macbre/push-to-ghcr@master

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- "5555:80"
3636

3737
steps:
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3939
- name: Use Node.js ${{ matrix.node-version }}
4040
uses: actions/setup-node@v6
4141
with:

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)