From 294e35a30a55e72125c2467c655d371bc1bf0781 Mon Sep 17 00:00:00 2001 From: Rickard Hagelin Date: Fri, 27 Feb 2026 10:19:29 +0100 Subject: [PATCH 1/2] add faq about pre-release --- byteguide/templates/faq.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/byteguide/templates/faq.html b/byteguide/templates/faq.html index 5daf096..0279de6 100644 --- a/byteguide/templates/faq.html +++ b/byteguide/templates/faq.html @@ -249,6 +249,16 @@
Upload version to project
7. Show


+
+ +

Known Issues

+
+
+ +
+
{% if copyright %}
From 77890afc7f19a8497d2d81caa785e1d981f4ea26 Mon Sep 17 00:00:00 2001 From: Rickard Hagelin Date: Fri, 27 Feb 2026 10:22:50 +0100 Subject: [PATCH 2/2] update build cache step --- .github/workflows/checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index e988ed3..2c8c56a 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -25,7 +25,7 @@ jobs: AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache - name: Cache poetry install - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.local key: poetry-${{ env.POETRY_VERSION }}-${{ matrix.python-version }}-${{ runner.os }} @@ -39,7 +39,7 @@ jobs: - name: Cache deps id: cache-deps - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: .venv key: pydeps-${{ hashFiles('**/poetry.lock') }}-${{ env.POETRY_VERSION }}-${{ matrix.python-version }}-${{ runner.os }}