Skip to content

Commit

Permalink
Merge branch 'main' into automation/mto-chart-update-0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
MuneebAijaz committed Aug 5, 2024
2 parents 0004ae8 + 875df76 commit 23bb0db
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/closed_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ on:

jobs:
push:
uses: stakater/.github/.github/workflows/mkdocs_pull_request_closed.yaml@v0.0.79
uses: stakater/.github/.github/workflows/pull_request_closed.yaml@v0.0.90
secrets:
GH_TOKEN: ${{ secrets.STAKATER_GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/delete_branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ on: delete

jobs:
delete:
uses: stakater/.github/.github/workflows/mkdocs_branch_deleted.yaml@v0.0.79
uses: stakater/.github/.github/workflows/branch_deleted.yaml@v0.0.90
secrets:
GH_TOKEN: ${{ secrets.STAKATER_GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ on:

jobs:
doc_qa:
uses: stakater/.github/.github/workflows/pull_request_doc_qa.yaml@v0.0.79
uses: stakater/.github/.github/workflows/pull_request_doc_qa.yaml@v0.0.90
with:
MD_CONFIG: .github/md_config.json
DOC_SRC: content
MD_LINT_CONFIG: .markdownlint.yaml
build_container:
if: ${{ github.base_ref == 'main' }}
uses: stakater/.github/.github/workflows/pull_request_container_build.yaml@v0.0.79
uses: stakater/.github/.github/workflows/pull_request_container_build.yaml@v0.0.90
with:
DOCKER_BUILD_CONTEXTS: content=https://github.com/stakater/mto-docs.git#pull-request-deployments
DOCKER_FILE_PATH: Dockerfile
Expand All @@ -27,6 +27,6 @@ jobs:
DOCKER_SECRETS: GIT_AUTH_TOKEN=${{ secrets.STAKATER_GITHUB_TOKEN }}

deploy_doc:
uses: stakater/.github/.github/workflows/mkdocs_pull_request_versioned_doc.yaml@v0.0.79
uses: stakater/.github/.github/workflows/pull_request_versioned_doc.yaml@v0.0.90
secrets:
GH_TOKEN: ${{ secrets.STAKATER_GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ on:

jobs:
push:
uses: stakater/.github/.github/workflows/mkdocs_push_versioned_doc.yaml@v0.0.79
uses: stakater/.github/.github/workflows/push_versioned_doc.yaml@v0.0.90
secrets:
GH_TOKEN: ${{ secrets.STAKATER_GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ on:

jobs:
create_release:
uses: stakater/.github/.github/workflows/release_template.yaml@v0.0.79
uses: stakater/.github/.github/workflows/release_template.yaml@v0.0.90
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.STAKATER_DELIVERY_SLACK_WEBHOOK }}
build_container:
uses: stakater/.github/.github/workflows/push_container_only.yaml@v0.0.79
uses: stakater/.github/.github/workflows/push_container_only.yaml@v0.0.90
with:
DOCKER_BUILD_CONTEXTS: content=https://github.com/stakater/mto-docs.git#gh-pages
DOCKER_FILE_PATH: Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .vale.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
StylesPath = styles
MinAlertLevel = warning

Packages = https://github.com/stakater/vale-package/releases/download/v0.0.25/Stakater.zip
Packages = https://github.com/stakater/vale-package/releases/download/v0.0.30/Stakater.zip
Vocab = Stakater

# Only check MarkDown files
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM nginxinc/nginx-unprivileged:1.26-alpine
FROM nginxinc/nginx-unprivileged:1.27-alpine
WORKDIR /usr/share/nginx/html/

# copy the entire application
Expand Down
2 changes: 1 addition & 1 deletion DockerfileLocal
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN mkdocs build
# remove the build theme because it is not needed after site is build.
RUN rm -rf dist

FROM nginxinc/nginx-unprivileged:1.26-alpine as deploy
FROM nginxinc/nginx-unprivileged:1.27-alpine as deploy
COPY --from=builder $HOME/application/site/ /usr/share/nginx/html/
COPY default.conf /etc/nginx/conf.d/

Expand Down
5 changes: 5 additions & 0 deletions theme_override/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ edit_uri: blob/main/content/
theme:
favicon: assets/images/favicon.svg

strict: true
validation:
links:
anchors: warn

extra:
version:
provider: mike
Expand Down

0 comments on commit 23bb0db

Please sign in to comment.