Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
security-events: write
steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4.3.1
uses: actions/checkout@v6.0.0
with:
persist-credentials: false
- name: Install uv
Expand All @@ -41,7 +41,7 @@ jobs:
if: '!cancelled()'
env:
# renovate: datasource=docker depName=davidanson/markdownlint-cli2-rules versioning=semver
MARKDOWNLINT_CLI2_VERSION: v0.18.1
MARKDOWNLINT_CLI2_VERSION: v0.19.1
uses: YannickTeKulve/docker-run-action@37eb44806428df732c5cc168b96f2b6be8153632
with:
image: davidanson/markdownlint-cli2-rules:${{ env.MARKDOWNLINT_CLI2_VERSION }}
Expand All @@ -66,7 +66,7 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v4.3.1
- uses: actions/checkout@v6.0.0
with:
persist-credentials: false
lfs: true
Expand All @@ -89,7 +89,7 @@ jobs:
call: check
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5.9.0
uses: docker/metadata-action@v5.10.0
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build Docker image
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand Down Expand Up @@ -41,7 +41,7 @@ repos:
- id: typos

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.33.3
rev: 0.35.0
hooks:
- id: check-github-workflows
args: ["--verbose"]
Expand All @@ -64,19 +64,19 @@ repos:
- mdformat-gfm-alerts==2.0.0

- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.18.1
rev: v0.19.1
hooks:
- id: markdownlint-cli2

# zizmor detects security vulnerabilities in GitHub Actions workflows.
- repo: https://github.com/woodruffw/zizmor-pre-commit
rev: v1.11.0
rev: v1.17.0
hooks:
- id: zizmor

# actionlint for verifying correct syntax in GitHub Actions workflows.
- repo: https://github.com/rhysd/actionlint
rev: v1.7.7
rev: v1.7.9
hooks:
- id: actionlint
language: golang
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN python -m mkdocs build --strict --site-dir /site


# production
FROM joseluisq/static-web-server:2.36.1
FROM joseluisq/static-web-server:2.39.0

COPY deploy/sws.toml /config.toml

Expand Down