Skip to content

Commit 2ba69aa

Browse files
authored
Merge branch 'master' into enable--notfound_no_urls_prefix-=-True
2 parents 4dc5f36 + ed505fb commit 2ba69aa

File tree

88 files changed

+1581
-926
lines changed

Some content is hidden

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

88 files changed

+1581
-926
lines changed

.devcontainer/devcontainer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
},
1313
"vscode": {
1414
"extensions": [
15-
"bierner.markdown-mermaid",
1615
"davidanson.vscode-markdownlint",
1716
"ms-python.python"
1817
]

.github/workflows/cleanup_acceptance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
cleanup:
99
runs-on: ubuntu-latest
10-
container: quay.io/hypernode/deploy:latest-php8.3-node20
10+
container: quay.io/hypernode/deploy:latest-php8.4-node22
1111
environment: acceptance
1212
steps:
1313
- uses: actions/checkout@v2

.github/workflows/deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
container: quay.io/hypernode/deploy:latest-php8.3-node20
15+
container: quay.io/hypernode/deploy:latest-php8.4-node22
1616
steps:
1717
- uses: actions/checkout@v3
1818
with:
@@ -47,7 +47,7 @@ jobs:
4747
name: acceptance
4848
url: ${{ steps.get_brancher_hostname.outputs.BRANCHER_URL }}
4949
if: github.ref != 'refs/heads/master'
50-
container: quay.io/hypernode/deploy:latest-php8.3-node20
50+
container: quay.io/hypernode/deploy:latest-php8.4-node22
5151
steps:
5252
- uses: actions/checkout@v3
5353
with:
@@ -102,7 +102,7 @@ jobs:
102102
name: production
103103
url: https://docs.hypernode.io
104104
if: github.ref == 'refs/heads/master'
105-
container: quay.io/hypernode/deploy:latest-php8.3-node20
105+
container: quay.io/hypernode/deploy:latest-php8.4-node22
106106
steps:
107107
- uses: actions/checkout@v3
108108
- name: download build artifact

.github/workflows/lint.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ['3.10']
15+
python-version: ['3.12']
1616

1717
steps:
1818
- uses: actions/checkout@v3
@@ -24,6 +24,6 @@ jobs:
2424
pip install -r requirements/base.txt
2525
- name: Check markdown format
2626
run: mdformat docs/
27-
- uses: parkerbxyz/suggest-changes@v1
27+
- uses: parkerbxyz/suggest-changes@v2
2828
with:
2929
event: 'REQUEST_CHANGES'

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ['3.8', '3.9', '3.10', '3.11']
11+
python-version: ['3.11', '3.12']
1212

1313
steps:
1414
- uses: actions/checkout@v3

bin/build_manpage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ set -e
44

55
pushd docs
66
make man
7-
echo "manpage located at $(realpath _build/man/docs.1)"
7+
echo "manpage located at $(realpath _build/man/documentation.1)"
88
popd

bin/watch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from time import sleep
77

88

99
def build_docs():
10-
subprocess.check_call("bin/build_docs")
10+
subprocess.run("bin/build_docs")
1111

1212

1313
def refresh_assets():

0 commit comments

Comments
 (0)