From c0a2deeafcab756ddf09a941c20e43bafcd22cf6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Feb 2026 14:46:32 +0000 Subject: [PATCH] :arrow_up: ci: bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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/auto-describe-repos.yml | 2 +- .github/workflows/deploy.yml | 2 +- .github/workflows/fetch-contributors.yml | 2 +- .github/workflows/fetch-team.yml | 2 +- .github/workflows/refresh-data.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/auto-describe-repos.yml b/.github/workflows/auto-describe-repos.yml index 294a5ea..11858f7 100644 --- a/.github/workflows/auto-describe-repos.yml +++ b/.github/workflows/auto-describe-repos.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 📥 Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: 🟢 Setup Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 416ada1..af8d302 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -28,7 +28,7 @@ jobs: if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' }} steps: - name: 📥 Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Important: fetch the latest from main (in case fetch-team just pushed) ref: main diff --git a/.github/workflows/fetch-contributors.yml b/.github/workflows/fetch-contributors.yml index fc15215..74348fe 100644 --- a/.github/workflows/fetch-contributors.yml +++ b/.github/workflows/fetch-contributors.yml @@ -21,7 +21,7 @@ jobs: steps: - name: 📥 Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Important: fetch the latest from main (in case refresh-data.yml just pushed) ref: main diff --git a/.github/workflows/fetch-team.yml b/.github/workflows/fetch-team.yml index d38cf8e..4fa7bc4 100644 --- a/.github/workflows/fetch-team.yml +++ b/.github/workflows/fetch-team.yml @@ -20,7 +20,7 @@ jobs: steps: - name: 📥 Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: main fetch-depth: 1 diff --git a/.github/workflows/refresh-data.yml b/.github/workflows/refresh-data.yml index 90a3627..d396f58 100644 --- a/.github/workflows/refresh-data.yml +++ b/.github/workflows/refresh-data.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 📥 Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: 🐍 Set up Python uses: actions/setup-python@v5