Skip to content

Commit 9a2229b

Browse files
committed
Merge remote-tracking branch 'origin/main' into om-47-IP-Address-Management-with-Docupike-IPAM-brings-more-efficiency-Resource-planning
2 parents a28ae0e + ce9bc27 commit 9a2229b

327 files changed

Lines changed: 22327 additions & 9100 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.alexignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Taken from external content:
22
CODE_OF_CONDUCT.md
33
changelog.md
4+
# alex can only handle English content:
5+
docs/de/

.alexrc.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,9 @@ allow:
1717
- hook
1818
- hooks
1919
- spa
20+
- execution
21+
# GDPR:
22+
- European
23+
- european
24+
- fire
25+
- burns

.config/.gitleaksignore

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[]

.config/gitleaks.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[extend]
2+
3+
useDefault = true
4+
5+
[allowlist]
6+
paths = [
7+
'''_(.+)''',
8+
'''(.+).log''',
9+
'''(.+).backup''',
10+
'''(.+).bak''',
11+
'''.env''',
12+
'''node_modules/''',
13+
'''site/''',
14+
'''(.+).lock''',
15+
'''.config/gitleaks-baseline-report.json'''
16+
]

.config/remark.json

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
{
22
"settings": {},
33
"plugins": [
4-
"lint",
5-
"lint-no-empty-sections",
4+
"remark-lint",
5+
"remark-preset-lint-recommended",
6+
"remark-preset-lint-consistent",
7+
[
8+
"remark-lint-code-block-style",
9+
"fenced"
10+
],
11+
"remark-lint-no-empty-sections",
612
[
713
"remark-frontmatter",
814
{
@@ -14,7 +20,18 @@
1420
[
1521
"remark-lint-no-dead-urls",
1622
{
17-
"skipLocalhost": true
23+
"skipLocalhost": true,
24+
"skipUrlPatterns": [
25+
"^mailto:(.*)",
26+
"^https://facebook.com(.*)",
27+
"^https://(www\\.|)xing.com(.*)",
28+
"^https://www.php\\.net",
29+
"^https://example\\.docupike\\.cloud",
30+
"^https://bitbucket\\.org/synetics(.*)"
31+
],
32+
"deadOrAliveOptions": {
33+
"timeout": 5000
34+
}
1835
}
1936
],
2037
[
@@ -34,7 +51,16 @@
3451
}
3552
]
3653
],
37-
"remark-preset-lint-consistent",
38-
"remark-preset-lint-recommended"
54+
[
55+
"remark-lint-list-item-indent",
56+
"tab"
57+
],
58+
[
59+
"remark-lint-emphasis-marker",
60+
"_"
61+
],
62+
"remark-gfm",
63+
"remark-normalize-headings"
3964
]
4065
}
66+
File renamed without changes.

.github/workflows/audit.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,38 +19,35 @@ jobs:
1919
- system:pip:audit
2020
- system:pip:outdated
2121
- wtf
22+
- audit:leaks
2223
runs-on: ubuntu-latest
2324
continue-on-error: true
2425
steps:
2526
- name: Checkout repository
26-
uses: actions/checkout@v3
27+
uses: actions/checkout@v6
2728
- name: Re-use NPM cache
28-
uses: actions/cache@v3
29+
uses: actions/cache@v5
2930
with:
3031
path: ~/.npm
3132
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
3233
restore-keys: |
3334
${{ runner.os }}-node-
34-
- name: Pull container base image
35-
run: >
36-
docker-compose
37-
pull
3835
- name: Re-use container image layers
3936
uses: jpribyl/action-docker-layer-caching@v0.1.1
4037
continue-on-error: true
4138
- name: Build container image
4239
run: >
43-
docker-compose
40+
docker compose
4441
build
4542
--build-arg USER_ID="$(id -u)"
4643
--build-arg GROUP_ID="$(id -g)"
4744
- name: Install toolchain
4845
run: >
49-
docker-compose
46+
docker compose
5047
run env
5148
npm ci
5249
- name: Run script
5350
run: >
54-
docker-compose
51+
docker compose
5552
run env
5653
npm run ${{ matrix.script }}

.github/workflows/build.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,34 +10,30 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v6
1414
- name: Re-use NPM cache
15-
uses: actions/cache@v3
15+
uses: actions/cache@v5
1616
with:
1717
path: ~/.npm
1818
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
1919
restore-keys: |
2020
${{ runner.os }}-node-
21-
- name: Pull container base image
22-
run: >
23-
docker-compose
24-
pull
2521
- name: Re-use container image layers
2622
uses: jpribyl/action-docker-layer-caching@v0.1.1
2723
continue-on-error: true
2824
- name: Build container image
2925
run: >
30-
docker-compose
26+
docker compose
3127
build
3228
--build-arg USER_ID="$(id -u)"
3329
--build-arg GROUP_ID="$(id -g)"
3430
- name: Install toolchain
3531
run: >
36-
docker-compose
32+
docker compose
3733
run env
3834
npm ci
3935
- name: Run script
4036
run: >
41-
docker-compose
37+
docker compose
4238
run env
4339
npm run docs:build

.github/workflows/lint.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,38 +20,35 @@ jobs:
2020
- cpd
2121
- docker-compose
2222
- dockerfile
23-
- jenkinsfile
23+
- jenkins
24+
- shell
2425
runs-on: ubuntu-latest
2526
steps:
2627
- name: Checkout repository
27-
uses: actions/checkout@v3
28+
uses: actions/checkout@v6
2829
- name: Re-use NPM cache
29-
uses: actions/cache@v3
30+
uses: actions/cache@v5
3031
with:
3132
path: ~/.npm
3233
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
3334
restore-keys: |
3435
${{ runner.os }}-node-
35-
- name: Pull container base image
36-
run: >
37-
docker-compose
38-
pull
3936
- name: Re-use container image layers
4037
uses: jpribyl/action-docker-layer-caching@v0.1.1
4138
continue-on-error: true
4239
- name: Build container image
4340
run: >
44-
docker-compose
41+
docker compose
4542
build
4643
--build-arg USER_ID="$(id -u)"
4744
--build-arg GROUP_ID="$(id -g)"
4845
- name: Install toolchain
4946
run: >
50-
docker-compose
47+
docker compose
5148
run env
5249
npm ci
5350
- name: Run script
5451
run: >
55-
docker-compose
52+
docker compose
5653
run env
5754
npm run test:${{ matrix.script }}

0 commit comments

Comments
 (0)