Skip to content

Commit c1492bd

Browse files
committed
Update dependencies, build etc.
This is likely to be the last update for mkdocs-material as the lead dev has launched a new project and put mkdocs-material into maintenance mode.
1 parent 36e49ae commit c1492bd

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
build:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
8+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
99
- name: Build the Docker image
1010
run: docker build -t decred/dcrdocs:$(date +%s) .
1111

.github/workflows/python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: [3.13]
9+
python-version: [3.14]
1010

1111
steps:
12-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
12+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
1313
- name: Set up Python ${{ matrix.python-version }}
14-
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
14+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
- name: Install dependencies

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build image
2-
FROM python:3.13
2+
FROM python:3.14
33

44
LABEL description="dcrdocs build"
55
LABEL version="1.0"
@@ -26,7 +26,7 @@ ENV DCRDOCS_CARDS="true"
2626
RUN ./bin/build_docs.sh
2727

2828
# Serve image (stable nginx version)
29-
FROM nginx:1.26-alpine
29+
FROM nginx:1.28-alpine
3030

3131
LABEL description="dcrdocs serve"
3232
LABEL version="1.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
In order to develop on `dcrdocs` you will need [Python](https://www.python.org/)
1515
installed on your system.
16-
Version 3.13 is recommended because this is the version used by the live site,
16+
Version 3.14 is recommended because this is the version used by the live site,
1717
however MkDocs does also support versions 3.8 and later.
1818
Python 2 is not supported.
1919

docs/about/license.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ dcrdocs is licensed under the [copyfree](http://copyfree.org) ISC License.
44

55
---
66

7-
Copyright © 2013-2015 The btcsuite developers.
8-
Copyright © 2015-2024 The Decred developers.
7+
Copyright © 2013-2015 The btcsuite developers.
8+
Copyright © 2015-2025 The Decred developers.
99

1010
Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
1111

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
mkdocs-material==9.6.11
2-
mkdocs-markdownextradata-plugin==0.2.5
1+
mkdocs-material==9.7.0
2+
mkdocs-markdownextradata-plugin==0.2.6

0 commit comments

Comments
 (0)