From 7ec98a639766e577fcae45cee1fafe29d29fabc8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 10:13:07 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 in the all group Bumps the all group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `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 dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-docker-image.yml | 2 +- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/labels.yml | 2 +- .github/workflows/sync-docs.yml | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-docker-image.yml b/.github/workflows/ci-docker-image.yml index e6d7dc1..27feb26 100644 --- a/.github/workflows/ci-docker-image.yml +++ b/.github/workflows/ci-docker-image.yml @@ -49,7 +49,7 @@ jobs: group: huge-runners steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ inputs.ref }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46911ba..add7bcb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: yaml: ${{ steps.changes.outputs.yaml_all }} steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" - name: Check for file changes uses: opsmill/paths-filter@v3.0.2 id: changes @@ -46,7 +46,7 @@ jobs: timeout-minutes: 5 steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" - name: "Set up Python ${{ matrix.python-version }}" uses: "actions/setup-python@v6" @@ -82,7 +82,7 @@ jobs: timeout-minutes: 5 steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" with: submodules: true - name: "Setup environment" @@ -104,7 +104,7 @@ jobs: timeout-minutes: 5 steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" with: submodules: true - name: Install NodeJS @@ -130,7 +130,7 @@ jobs: timeout-minutes: 5 steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" with: submodules: true @@ -158,7 +158,7 @@ jobs: timeout-minutes: 5 steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" - name: "Set up Python ${{ matrix.python-version }}" uses: "actions/setup-python@v6" diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml index 87266c6..8298b9f 100644 --- a/.github/workflows/labels.yml +++ b/.github/workflows/labels.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run Labeler uses: crazy-max/ghaction-github-labeler@v5 diff --git a/.github/workflows/sync-docs.yml b/.github/workflows/sync-docs.yml index 837bbac..f98218e 100644 --- a/.github/workflows/sync-docs.yml +++ b/.github/workflows/sync-docs.yml @@ -13,12 +13,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: source-repo - name: Checkout target repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: opsmill/infrahub-docs token: ${{ secrets.PAT_TOKEN }}