From b4a87220dea291707be414c784618c7049711947 Mon Sep 17 00:00:00 2001 From: Tiandians Date: Thu, 19 Oct 2023 09:57:56 +0800 Subject: [PATCH] =?UTF-8?q?action:=20=E4=BF=AE=E5=A4=8D=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E9=83=A8=E7=BD=B2=E6=97=B6=20git-revision-date-plugin=20?= =?UTF-8?q?=E6=97=A5=E6=9C=9F=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 4 +++- docs/programming/faq.md | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 90317ed..97e909b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,7 +12,9 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + with: + fetch-depth: 0 - uses: actions/setup-python@v4 with: python-version: 3.x diff --git a/docs/programming/faq.md b/docs/programming/faq.md index 71737d5..cd6c11c 100644 --- a/docs/programming/faq.md +++ b/docs/programming/faq.md @@ -20,6 +20,7 @@ 关于布尔类型的使用: - 到 `bool` 的转换与到其他整数类型的转换不同: `(bool)0.5`求值为 `1` ,然而 `(int)0.5` 求值为 `​0`​。在给 `_Bool` 类型赋值时需要注意这一点。 + ## 数组、字符串