From 92b6a8214e91189316834c2393fe417064c592a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 09:26:08 +0000 Subject: [PATCH] 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/ci.yml | 24 +++++++++++------------ .github/workflows/labels.yml | 2 +- .github/workflows/publish-pypi.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/repository-dispatch.yml | 2 +- .github/workflows/sync-docs.yml | 4 ++-- .github/workflows/update-submodule.yml | 2 +- 7 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8217b2e1..397fdfa3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: github_workflows: ${{ steps.changes.outputs.github_workflows }} steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" - name: Check for file changes uses: dorny/paths-filter@v3 id: changes @@ -63,7 +63,7 @@ jobs: timeout-minutes: 5 steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" - name: "Setup environment" run: "pip install yamllint==1.35.1" - name: "Linting: yamllint" @@ -76,7 +76,7 @@ jobs: timeout-minutes: 5 steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" - name: "Setup environment" run: "pip install ruff==0.11.0" - name: "Linting: ruff check" @@ -94,7 +94,7 @@ jobs: timeout-minutes: 5 steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" - name: "Linting: markdownlint" uses: DavidAnson/markdownlint-cli2-action@v20 with: @@ -110,7 +110,7 @@ jobs: timeout-minutes: 5 steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" - name: Check workflow files run: | bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) @@ -134,7 +134,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 @@ -161,7 +161,7 @@ jobs: timeout-minutes: 5 steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" with: submodules: true - name: Set up Python @@ -190,7 +190,7 @@ jobs: timeout-minutes: 5 steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" with: submodules: true @@ -227,7 +227,7 @@ jobs: timeout-minutes: 30 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 with: @@ -280,7 +280,7 @@ jobs: timeout-minutes: 30 steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" - name: Set up Python uses: actions/setup-python@v6 with: @@ -320,14 +320,14 @@ jobs: # timeout-minutes: 30 # steps: # - name: "Check out repository code" - # uses: "actions/checkout@v5" + # uses: "actions/checkout@v6" # - name: "Extract target branch name" # id: extract_branch # run: echo "TARGET_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV # - name: "Checkout infrahub repository" - # uses: "actions/checkout@v5" + # uses: "actions/checkout@v6" # with: # repository: "opsmill/infrahub" # path: "infrahub-server" diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml index aa7c4002..9d558080 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/publish-pypi.yml b/.github/workflows/publish-pypi.yml index c904fab9..281af202 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -50,7 +50,7 @@ jobs: installer-parallel: true - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" with: submodules: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eca906f7..1aa71a06 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: latest_tag: ${{ steps.release.outputs.latest_tag }} steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" with: submodules: true diff --git a/.github/workflows/repository-dispatch.yml b/.github/workflows/repository-dispatch.yml index 33f9eaee..261429df 100644 --- a/.github/workflows/repository-dispatch.yml +++ b/.github/workflows/repository-dispatch.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Repository Dispatch uses: peter-evans/repository-dispatch@v4 diff --git a/.github/workflows/sync-docs.yml b/.github/workflows/sync-docs.yml index 6ed64d59..65574ce7 100644 --- a/.github/workflows/sync-docs.yml +++ b/.github/workflows/sync-docs.yml @@ -16,12 +16,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 }} diff --git a/.github/workflows/update-submodule.yml b/.github/workflows/update-submodule.yml index 314a6ac7..726201cd 100644 --- a/.github/workflows/update-submodule.yml +++ b/.github/workflows/update-submodule.yml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Trigger submodule update run: |