From 6cbd2cf063650f4cccf7b77b346ec452daf3c796 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 03:17:00 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-deploy.yml | 4 ++-- .github/workflows/update-sars-cov-2-datasets.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 4dfcb600a..2ae028f06 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -80,7 +80,7 @@ jobs: - name: "Checkout code (fork)" if: ${{ steps.config.outputs.is_fork == 'true' }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Number of commits to fetch. 0 indicates all history for all branches and tags. fetch-tags: true # Whether to fetch tags, even if fetch-depth > 0. @@ -89,7 +89,7 @@ jobs: - name: "Checkout code" if: ${{ steps.config.outputs.is_fork != 'true' }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Number of commits to fetch. 0 indicates all history for all branches and tags. fetch-tags: true # Whether to fetch tags, even if fetch-depth > 0. diff --git a/.github/workflows/update-sars-cov-2-datasets.yml b/.github/workflows/update-sars-cov-2-datasets.yml index 5638f82bf..498531eff 100644 --- a/.github/workflows/update-sars-cov-2-datasets.yml +++ b/.github/workflows/update-sars-cov-2-datasets.yml @@ -30,7 +30,7 @@ jobs: steps: - name: "Checkout code" if: ${{ steps.config.outputs.is_fork != 'true' }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Number of commits to fetch. 0 indicates all history for all branches and tags. fetch-tags: true # Whether to fetch tags, even if fetch-depth > 0.