From 15ad7c386ab4d545d3d00ad082442d4e4f55f4df Mon Sep 17 00:00:00 2001 From: chvmvd <104971044+chvmvd@users.noreply.github.com> Date: Sun, 30 Apr 2023 15:43:51 +0900 Subject: [PATCH] Add fetch-depth property to fix last updated time --- .github/workflows/deploy.yml | 2 ++ .github/workflows/preview.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 20f1008b1..3c03039c4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,6 +16,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Execute Notebooks uses: ./.github/actions/execute-notebooks diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 36e5170d7..aa4d1ef3b 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -21,6 +21,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Execute Notebooks uses: ./.github/actions/execute-notebooks