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 }} 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 @@
- in the filename. If a pre-release tag is used (e.g. myproject-1.0.0-alpha.zip), the program will interpret alpha as the version instead of 1.0.0-alpha. Only stable release versions without a - in the version string should be used (e.g. myproject-1.0.0.zip).