From e1d087551040c59d19d38cef36b859f6eb2da870 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 20:12:33 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/autoupdate-poetry.yml | 2 +- .github/workflows/build-image.yml | 2 +- .github/workflows/ci.yaml | 6 +++--- .github/workflows/e2e-dispatch.yml | 8 ++++---- .github/workflows/scheduled.yml | 4 ++-- .github/workflows/sonar-pr.yml | 4 ++-- .github/workflows/sync-openapi-spec.yml | 2 +- .github/workflows/ui-e2e.yml | 2 +- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/autoupdate-poetry.yml b/.github/workflows/autoupdate-poetry.yml index 3aaf35da9..972d10d29 100644 --- a/.github/workflows/autoupdate-poetry.yml +++ b/.github/workflows/autoupdate-poetry.yml @@ -18,7 +18,7 @@ jobs: lock-changed: ${{ steps.lock-changed.outputs.lock-changed }} steps: - name: Checkout main branch - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: main diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index a904dce8d..64eb5d008 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Log in to the Container registry uses: docker/login-action@v4 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 68ded1094..7af253773 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: lint uses: ./.github/actions/lint @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: validate-openapi-spec uses: ./.github/actions/validate-openapi-spec @@ -94,7 +94,7 @@ jobs: --health-retries 5 steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: test uses: ./.github/actions/test diff --git a/.github/workflows/e2e-dispatch.yml b/.github/workflows/e2e-dispatch.yml index f3fad28e6..ab9d8faf1 100644 --- a/.github/workflows/e2e-dispatch.yml +++ b/.github/workflows/e2e-dispatch.yml @@ -134,7 +134,7 @@ jobs: }); - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ github.event_name == 'issue_comment' && needs.check-trigger.outputs.pr_repo || github.repository }} ref: ${{ github.event_name == 'issue_comment' && needs.check-trigger.outputs.pr_sha || github.sha }} @@ -160,7 +160,7 @@ jobs: done - name: Fetch test suite - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 repository: ansible/eda-qa @@ -244,7 +244,7 @@ jobs: environment: ${{ github.event_name == 'issue_comment' && 'protected' || '' }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ github.event_name == 'issue_comment' && needs.check-trigger.outputs.pr_repo || github.repository }} ref: ${{ github.event_name == 'issue_comment' && needs.check-trigger.outputs.pr_sha || github.sha }} @@ -257,7 +257,7 @@ jobs: password: ${{ secrets.QUAY_PASSWORD }} - name: Fetch test suite - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 repository: ansible/eda-qa diff --git a/.github/workflows/scheduled.yml b/.github/workflows/scheduled.yml index af4c64444..95c59ef32 100644 --- a/.github/workflows/scheduled.yml +++ b/.github/workflows/scheduled.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Log in to the Container registry uses: docker/login-action@v4 @@ -38,7 +38,7 @@ jobs: done - name: Fetch test suite - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 repository: ansible/eda-qa diff --git a/.github/workflows/sonar-pr.yml b/.github/workflows/sonar-pr.yml index 53c6b87de..914a9d8ea 100644 --- a/.github/workflows/sonar-pr.yml +++ b/.github/workflows/sonar-pr.yml @@ -37,7 +37,7 @@ jobs: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # Download coverage artifact from CI workflow - name: Download coverage artifact @@ -179,7 +179,7 @@ jobs: github.event.workflow_run.event == 'push' && github.repository == 'ansible/eda-server' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # Download coverage artifact from CI workflow - name: Download coverage artifact diff --git a/.github/workflows/sync-openapi-spec.yml b/.github/workflows/sync-openapi-spec.yml index dfe25bc17..2393072e7 100644 --- a/.github/workflows/sync-openapi-spec.yml +++ b/.github/workflows/sync-openapi-spec.yml @@ -53,7 +53,7 @@ jobs: - name: Checkout spec repo id: checkout_spec_repo continue-on-error: true - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ secrets.OPENAPI_SPEC_REPO }} ref: ${{ steps.branch_map.outputs.spec_branch }} diff --git a/.github/workflows/ui-e2e.yml b/.github/workflows/ui-e2e.yml index 246be448a..b816efc7e 100644 --- a/.github/workflows/ui-e2e.yml +++ b/.github/workflows/ui-e2e.yml @@ -127,7 +127,7 @@ jobs: }); - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ github.event_name == 'issue_comment' && needs.check-trigger.outputs.pr_repo || github.repository }} ref: ${{ github.event_name == 'issue_comment' && needs.check-trigger.outputs.pr_sha || github.sha }}